/* Super basic styling to make the page look nice */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.6;
}

/* Header styling, making it pop */
header {
    background-color: #007acc;
    color: white;
    padding: 20px;
}

button {
    padding: 10px 20px;
    margin: 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

/* Fancy dark mode toggle */
.new-theme {
    background-color: black;
    color: white;
}

.new-theme header {
    background-color: #444;
}

/* Styling for better readability */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

/* Back to top button styling */
#scrollTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007acc;
    color: white;
    border-radius: 5px;
}

/* Styling the modal popup */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: white;
    padding: 20px;
    width: 50%;
    margin: 10% auto;
    border-radius: 5px;
    text-align: center;
}

.close-btn {
    font-size: 20px;
    cursor: pointer;
}

/* Notification system */
.notification {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: none;
}