/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header and Navigation */
header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Main Content */
main {
    padding: 20px;
}

/* Read Now Section */
.flipbook-container {
    margin: 20px 0;
    position: relative;
}

#flipbook {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

#fullscreen-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

#fullscreen-btn:hover {
    background-color: #0056b3;
}

/* Playlists Section */
.playlist-selector {
    margin: 20px 0;
}

#spotify-player iframe {
    width: 300px;
    height: 380px;
    border: none;
}

/* Submissions Section */
#submissions {
    margin-top: 40px;
    padding: 20px;
    background-color: #e9ecef;
    border-radius: 8px;
}

#submissions h2 {
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
    font-weight: bold;
}

form input, form select, form button {
    margin-top: 5px;
    padding: 10px;
    font-size: 1rem;
}

form button {
    margin-top: 20px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #218838;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

footer a {
    color: white;
    text-decoration: none;
}
