body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #1A1A1D;
    color: #F1F5F9;
    min-height: 100vh;
}

a {
    color: #c7d2fe;
}

a:hover {
    color: #e0e7ff;
}

#loader {
    margin-top: 20px;
}

#content-container {
    display: none;
}

#admin-link {
    display: none;
}

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

#home-section {
    margin-top: 20px;
}

.data-display h2 {
    margin-top: 0;
    font-size: 36px;
    border-bottom: 2px solid #ffa6a6;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
}

/* Admin Panel Styles */
#admin-panel {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#admin-panel h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

#invite-form {
    display: flex;
    margin-bottom: 20px;
    width: 50%;
}

#invite-form input[type="email"] {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

#invite-form button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

#invite-form button:hover {
    background-color: #0056b3;
}

#approval-list, #user-list {
    margin-top: 20px;
}

#user-list div, #approval-list div {
    background-color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#user-list div select {
    padding: 5px;
    font-size: 14px;
    margin-right: 10px; /* Add margin to the right */
}

#user-list div button {
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    background-color: #dc3545;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

#user-list div button:hover {
    background-color: #c82333;
}

.user-actions {
    display: flex;
    align-items: center;
}

#user-dashboard {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
}

#user-dashboard h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #000000;
}

#user-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

#user-info h4 {
    font-size: 1.25em;
    margin-bottom: 10px;
    color: #000000;
}

#user-info p {
    margin: 0;
    font-size: 1em;
}

#user-info p strong {
    color: #555;
}

#user-info span {
    color: #008080;
}

@media (min-width: 768px) {
    #user-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

#banner-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

#banner-container a {
    display: block;
    width: 100%;
}

#banner-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#banner-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Add responsive styling for smaller screens */
@media (max-width: 768px) {
    #banner-container {
        grid-template-columns: 1fr;
    }
}
