{
*{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    body {
        background-color: #f5f5f5;
    }

    header {
        background-color: brown;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .logo {
        color: white;
        font-size: 1.2rem;
        font-weight: bold;
        text-align: center;
        letter-spacing: 1px;
    }

    .menu-icon {
        position: absolute;
        left: 1rem;
        font-size: 1.8rem;
        color: white;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .menu-icon:hover {
        color: #3498db;
    }

    .menu-container {
        position: fixed;
        top: 0;
        left: -250px; /* Hidden off-screen */
        width: 250px;
        height: 100vh;
        background-color:brown;
        box-shadow: 2px 0 5px rgba(0,0,0,0.3);
        z-index: 1000; /* Ensure it hovers over everything */
        transition: left 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        padding: 2rem;
    }

    .menu-container.open {
        left: 0; /* Slide in */
    }

    .close-btn {
        align-self: flex-end;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        transition: color 0.3s ease, transform 0.2s ease;
        margin-bottom: 1rem;
        background:none;
    }

    .close-btn:hover {
        color: #3498db;
        transform: scale(1.2);
    }

    .menu-container button {
    background: transparent;
        background-color: translate;
        width:auto;
        color: white;
        padding: 0.75rem;
        margin: 0.5rem 0;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 1rem;
        text-transform: uppercase;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .menu-container button:hover {
    background: transparent;
        background-color: translate;
        transform: translateX(5px);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }

    .book-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        background: white;
        border-radius: 8px;
        margin: 1rem 0;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    .book-image {
        width: 150px;
        margin-right: 1rem;
    }

    .book-image img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        object-fit: cover;
    }

    .book-details {
        flex: 1;
        padding: 0;
    }

    .book-details h2 {
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .read-btn, .complete-btn, .subscribe-btn {
        background-color: #3498db;
        color: white;
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
    }

    .read-btn:hover, .complete-btn:hover, .subscribe-btn:hover {
        background-color: #2980b9;
    }

    .auth-form, .subscribe-form {
        max-width: 400px;
        margin: 2rem auto;
        background: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .auth-form input, .auth-form textarea,
    .subscribe-form input, .subscribe-form textarea {
        width: 100%;
        padding: 0.5rem;
        margin: 0.5rem 0;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .auth-message, .subscribe-message {
        text-align: center;
        margin: 1rem 0;
        padding: 1rem;
        background: #fff;
        border-radius: 4px;
    }

    .episode-item {
        margin: 1rem 0;
        padding: 1rem;
        background: white;
        border-radius: 4px;
    }

    .error {
        color: red;
        text-align: center;
    }

    .user-info {
        text-align: right;
        padding: 1rem;
    }

    @media (max-width: 768px) {
        .container {
            padding: 1rem 0;
        }

        .book-item {
            flex-direction: row;
            margin-left: 0;
            margin-right: 0;
        }

        .book-image {
            width: 120px;
            margin-right: 1rem;
        }

        .book-details {
            padding: 0;
        }

        .menu-icon {
            font-size: 1.5rem;
            left: 0.5rem;
        }

        .menu-container {
            width: 200px;
            left: -200px;
        }

        .menu-container.open {
            left: 0;
        }

        .close-btn {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
        }
    }
    
