/* General Styles */
body, html {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container */
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    margin: 20px;
    text-align: center;
}

/* Header */
header h1 {
    color: #007bff;
    font-size: 36px;
    margin-bottom: 20px;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="url"],
form input[type="number"] {
    width: 100%;
    max-width: 500px;
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form input[type="url"]:focus,
form input[type="number"]:focus {
    border-color: #007bff;
}

form button {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

form button:hover {
    background-color: #0056b3;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #007bff;
    color: #fff;
}

table td button {
    padding: 5px 10px;
    font-size: 14px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

table td button:hover {
    background-color: #c82333;
}

/* Messages */
#message {
    color: #28a745;
    font-size: 16px;
    margin-top: 20px;
}

/* Miscellaneous */
.forgot-password {
    display: block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #0056b3;
}

/* Iframe */
iframe {
    width: 100%;
    height: 100vh;
    border: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Banner */
.banner {
    max-width: 100%;
    text-align: center;
    margin-bottom: 6px;
    overflow: hidden;
    margin-top: 4px;
}

.banner-image {
    width: 728px;
    height: 90px;
    margin-bottom: 20px;
}

.html-usage {
    margin-top: 10px;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
}

.html-usage input {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
}

/* Menu */
.menu-container {
    width: 100%;
    background-color: #ff6f61; /* Vibrant background color */
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
}

.menu {
    display: inline-block;
    padding: 10px 0;
    list-style: none;
}

.menu li {
    display: inline;
    margin: 0 10px; /* Add spacing between menu items */
}

.menu a {
    color: white;
    background-color: #ff9a9e;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth transitions */
}

.menu a:hover {
    background-color: #fad0c4;
    color: #ff6f61;
}

.menu a.active {
    background-color: #ff9a9e;
    color: white;
}
