.jubilee-attendance {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.jubilee-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.jubilee-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Updated button styles */
.jubilee-form button,
#jubilee-mark-attendance,
.jubilee-form input[type="submit"] {
    background: #996699;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.jubilee-form button:hover,
#jubilee-mark-attendance:hover,
.jubilee-form input[type="submit"]:hover {
    background: #7a527a;
}

.jubilee-attendee-info {
    margin-top: 20px;
}

.jubilee-attendee-info table {
    width: 100%;
    border-collapse: collapse;
}

.jubilee-attendee-info th,
.jubilee-attendee-info td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.jubilee-attendee-info th {
    background-color: #f2f2f2;
}

.jubilee-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
}

.jubilee-message.success {
    background-color: #d4edda;
    color: #155724;
}

.jubilee-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.jubilee-spinner {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #996699; /* Updated spinner color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.jubilee-attended-list {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.jubilee-attended-list h3 {
    color: #996699;
    margin-top: 0;
    margin-bottom: 20px;
}

#jubilee-filter-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#jubilee-export-csv {
    background-color: #996699;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}

#jubilee-export-csv:hover {
    background-color: #7a527a;
}

.jubilee-attendee-table {
    width: 100%;
    border-collapse: collapse;
}

.jubilee-attendee-table th,
.jubilee-attendee-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.jubilee-attendee-table th {
    background-color: #996699;
    color: white;
}

.jubilee-attendee-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.jubilee-attendee-table tr:hover {
    background-color: #ddd;
}