.fairytale-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Crimson Text', serif;
    background: #fdfbf7;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.book-container {
    max-width: 100%; /* Allow full width on mobile */
    margin: 0 auto;
}

.flip-book {
    position: relative;
    width: 100%;
    height: auto; /* Adjust height for responsive design */
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.page {
    position: relative; /* Change from absolute to relative */
    width: 100%;
    height: 100%; /* Allow natural height */
    background: #fff;
    transition: transform 0.5s ease;
    display: none;
    padding: 20px; /* Add padding for content */
}

.page.active {
    display: block;
}

.page-content {
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5;
    height: 85%;
}
.page-content img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.dropcap {
    float: left;
    font-size: 3em; /* Adjust for mobile */
    line-height: 0.8;
    padding: 0.1em 0.1em 0 0;
    color: var(--cleops-base);
}

.icon-container {
    text-align: center;
    margin-top: -10px;
}

.icon-container i {
    font-size: 2em;
    color: var(--cleops-base);
}

.page-number {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: var(--cleops-base);
}

.arrow-control {
    display: inline-flex;         /* Keep inline layout */
    align-items: center;         /* Center icon vertically */
    justify-content: center;      /* Center icon horizontally */
    font-size: 2rem;             /* Adjust font size as needed */
    cursor: pointer;             /* Show pointer cursor on hover */
    color: var(--cleops-base);   /* Change to your desired color */
    transition: color 0.3s;      /* Smooth transition for hover */
}

.arrow-control:hover {
    color: var(--cleops-green);
}
.arrow-control.disabled {
    color: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
}
.page.slide-out {
    transform: translateX(-100%);
}

.page.slide-in {
    transform: translateX(0);
}

/* Responsive styles */
@media (max-width: 600px) {
    .page-content {
        font-size: 0.9rem; /* Smaller font on mobile */
    }

    .dropcap {
        font-size: 2.5em; /* Smaller dropcap */
    }

    .icon-container i {
        font-size: 1.5em; /* Smaller icons on mobile */
    }
    .flip-book {
        min-height: 420px;
    }
}
.live-conditions .action-button {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.live-conditions .action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.live-conditions .card {
    border: none;
}

.live-conditions .card-body {
    padding: 3rem 1.5rem;
}
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

#windyMap {
    pointer-events: auto; /* Enable pointer events on the iframe */
}
