/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header styles */
.app-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Make header buttons twice as tall - auto-deploy test */
.app-header .action-btn,
.app-header .view-bookings-btn {
    padding: 1.4rem 1.2rem;
    font-size: 1rem;
    line-height: 1.2;
    min-height: 70px;
    height: 70px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-header .login-btn,
.app-header .logout-btn {
    padding: 1.4rem 1.2rem;
    font-size: 1rem;
    line-height: 1.2;
    min-height: 50px;
    height: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.congregation-selector {
    background: rgba(255,255,255,0.9);
    color: #333;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    min-width: 150px;
}

.login-section {
    display: flex;
    align-items: center;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.logged-in-user {
    color: #000;
    font-weight: normal;
    font-size: 11px;
}

.user-info {
    padding: 4px 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.recurring-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.recurring-section {
    text-align: center;
}

/* Manual Time Input Styles */
.manual-time-inputs {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.time-input-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: end;
}

.time-input-field {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-input-field label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #495057;
}

.manual-time-input {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    width: 120px;
    text-align: center;
}

.manual-time-input:focus {
    outline: none;
    border-color: #6f42c1;
    box-shadow: 0 0 0 2px rgba(111, 66, 193, 0.25);
}

.time-input-note {
    text-align: center;
    margin-top: 10px;
    color: #6c757d;
}

.recurring-checkbox {
    transform: scale(1.1);
}

.login-btn {
    background: white;
    color: #495057;
    border: 1px solid #dee2e6;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn:hover {
    background: #f8f9fa;
    border-color: #6f42c1;
    color: #6f42c1;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.logout-btn {
    background: white;
    color: #495057;
    border: 1px solid #dee2e6;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-btn:hover {
    background: #f8f9fa;
    border-color: #6f42c1;
    color: #6f42c1;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.view-bookings-btn {
    background: #6f42c1;
    color: white;
    border: none;
    padding: 16px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    margin-right: 10px;
    min-height: 48px;
    height: 48px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

.view-bookings-btn:hover {
    background: #5a2d91;
}

.notifications-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 16px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    margin-right: 10px;
}

.notifications-btn:hover {
    background: #218838;
}

/* Small white notification button for after Congregations section */
.notifications-section {
    margin-top: 1rem;
    text-align: center;
}

.notifications-btn-small {
    background: white;
    color: #495057;
    border: 1px solid #dee2e6;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notifications-btn-small:hover {
    background: #f8f9fa;
    border-color: #6f42c1;
    color: #6f42c1;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.login-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #f5c6cb;
}

.delete-btn {
    background: #6f42c1;
    color: white;
    border: 2px solid #6f42c1;
    padding: 16px 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 48px;
    min-height: 48px;
}

.delete-btn:hover {
    background: #5a2d91;
    border-color: #5a2d91;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.delete-booking-btn {
    background: #6f42c1;
    color: white;
    border: 2px solid #6f42c1;
    padding: 16px 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 48px;
    min-height: 48px;
}

.delete-booking-btn:hover {
    background: #5a2d91;
    border-color: #5a2d91;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.booking-item {
    cursor: pointer;
    transition: background-color 0.2s;
}

.booking-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.booking-item.editable {
    border-left: 3px solid #28a745;
}

.booking-item.editable:hover {
    background-color: rgba(40, 167, 69, 0.1);
}

/* Main content */
.main-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Calendar controls */
.calendar-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.calendar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.month-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 16px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    min-height: 48px;
    height: 48px;
    box-sizing: border-box;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

.action-btn.primary {
    background: #6f42c1;
    color: white;
}

.action-btn.primary:hover {
    background: #5a2d91;
}

.action-btn.secondary {
    background: #6f42c1;
    color: white;
}

.action-btn.secondary:hover {
    background: #5a2d91;
}

/* Legend container */
.legend-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Bottom legend styling */
.bottom-legend {
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.legend-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

.legend-items {
    display: flex;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

/* Legend colors */
.legend-color.available {
    background-color: #28a745;
    border-radius: 2px; /* Square for availability status */
}

.legend-color.partially-available {
    background-color: #ffc107;
    border-radius: 2px; /* Square for availability status */
}

.legend-color.not-available {
    background-color: #dc3545;
    border-radius: 2px; /* Square for availability status */
}

.legend-color.woodlands {
    background-color: #6f42c1;
    border-radius: 50%; /* Circle for congregations */
}

.legend-color.north {
    background-color: #fd7e14;
    border-radius: 50%; /* Circle for congregations */
}

.legend-color.central {
    background-color: #007bff;
    border-radius: 50%; /* Circle for congregations */
}

/* Calendar container */
.calendar-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

/* Day headers */
.day-header {
    background: #f8f9fa;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
}

/* Day cells */
.day-cell {
    min-height: 120px;
    padding: 0.5rem;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.day-cell:nth-child(7n) {
    border-right: none;
}

.day-cell:hover {
    background-color: #f8f9fa;
}

.day-cell.other-month {
    background-color: #f8f9fa;
    color: #adb5bd;
}

.day-cell.selected {
    background-color: #e3f2fd;
    border: 2px solid #2196f3;
}

.day-number {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.day-number.current-date {
    background-color: #ff9800;
    color: white;
    border: 2px solid #f57c00;
    border-radius: 4px;
    padding: 4px 8px;
    display: inline-block;
    min-width: 24px;
    text-align: center;
}

/* Availability status colors */
.day-cell.available {
    background-color: #d4edda;
}

.day-cell.partially-available {
    background-color: #fff3cd;
}

.day-cell.not-available {
    background-color: #f8d7da;
}

/* Booking information display */
.bookings-container {
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.booking-item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 9px;
    line-height: 1.1;
    margin-bottom: 2px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
}

.dot.woodlands {
    background-color: #6f42c1;
}

.dot.north {
    background-color: #fd7e14;
}

.dot.central {
    background-color: #007bff;
}

.booking-info {
    color: #333;
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.booking-congregation {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1px;
}

.booking-room-time {
    color: #555;
    margin-bottom: 1px;
}

.booking-time {
    color: #666;
    font-size: 8px;
}

/* Legacy support for old dots-container (if any remain) */
.dots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 0.25rem;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

/* Edit modal should appear above other modals */
#edit-booking-modal {
    z-index: 1100;
}

/* Purple color scheme for edit booking modal */
#edit-booking-modal .modal-content {
    background: linear-gradient(135deg, #f8f6ff 0%, #f0ebff 100%);
    border: 2px solid #6f42c1;
    box-shadow: 0 8px 32px rgba(111, 66, 193, 0.2);
}

#edit-booking-modal h2 {
    color: #6f42c1;
    border-bottom: 2px solid #6f42c1;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

#edit-booking-modal label {
    color: #5a2d91;
    font-weight: 600;
}

#edit-booking-modal input,
#edit-booking-modal select {
    border: 2px solid #d1c4e9;
    border-radius: 6px;
    padding: 10px;
    transition: border-color 0.3s ease;
}

#edit-booking-modal input:focus,
#edit-booking-modal select:focus {
    border-color: #6f42c1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

#edit-booking-modal button[type="submit"] {
    background: #6f42c1;
    color: white;
    border: 2px solid #6f42c1;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

#edit-booking-modal button[type="submit"]:hover {
    background: #5a2d91;
    border-color: #5a2d91;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

/* Purple color scheme for login modal */
#login-modal .modal-content {
    background: linear-gradient(135deg, #f8f6ff 0%, #f0ebff 100%);
    border: 2px solid #6f42c1;
    box-shadow: 0 8px 32px rgba(111, 66, 193, 0.2);
}

#login-modal h2 {
    color: #6f42c1;
    border-bottom: 2px solid #6f42c1;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

#login-modal label {
    color: #5a2d91;
    font-weight: 600;
}

#login-modal input {
    border: 2px solid #d1c4e9;
    border-radius: 6px;
    padding: 10px;
    transition: border-color 0.3s ease;
}

#login-modal input:focus {
    border-color: #6f42c1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

#login-modal button[type="submit"] {
    background: #6f42c1;
    color: white;
    border: 2px solid #6f42c1;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

#login-modal button[type="submit"]:hover {
    background: #5a2d91;
    border-color: #5a2d91;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

/* Purple color scheme for booking modal */
#booking-modal .modal-content {
    background: linear-gradient(135deg, #f8f6ff 0%, #f0ebff 100%);
    border: 2px solid #6f42c1;
    box-shadow: 0 8px 32px rgba(111, 66, 193, 0.2);
}

#booking-modal h2 {
    color: #6f42c1;
    border-bottom: 2px solid #6f42c1;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

#booking-modal label,
#booking-modal .time-label {
    color: #5a2d91;
    font-weight: 600;
}

#booking-modal input,
#booking-modal select {
    border: 2px solid #d1c4e9;
    border-radius: 6px;
    padding: 10px;
    transition: border-color 0.3s ease;
}

#booking-modal input:focus,
#booking-modal select:focus {
    border-color: #6f42c1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

#booking-modal button[type="submit"] {
    background: #6f42c1;
    color: white;
    border: 2px solid #6f42c1;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

#booking-modal button[type="submit"]:hover {
    background: #5a2d91;
    border-color: #5a2d91;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

/* Purple styling for recurring section in booking modal */
#booking-modal .recurring-section {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border: 2px solid #d1c4e9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

#booking-modal .recurring-checkbox-label {
    color: #5a2d91;
    font-weight: 600;
}

#booking-modal .recurring-options {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid #d1c4e9;
}

#booking-modal .recurring-info {
    background: rgba(111, 66, 193, 0.1);
    border-left: 4px solid #6f42c1;
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 1rem;
}

#booking-modal .recurring-info small {
    color: #5a2d91;
    font-weight: 500;
}

/* Purple styling for time selection section */
#booking-modal .time-selection-section {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border: 2px solid #d1c4e9;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

#booking-modal .instruction-text {
    color: #5a2d91;
    font-weight: 500;
    font-style: italic;
}

#booking-modal .selected-times-display {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #d1c4e9;
}

/* My Bookings modal should appear above base modals but below edit modal */
#my-bookings-modal {
    z-index: 1050;
}
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 80%;
    max-width: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Mobile responsive design for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 2% auto;
        padding: 1.5rem;
    }
}

.close-btn {
    color: #adb5bd;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: #495057;
}

/* Form styles */
#booking-form {
    margin-top: 1rem;
}

/* Horizontal form layout */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field {
    flex: 1;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
}

/* Mobile responsive design for form */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-field {
        margin-bottom: 1rem;
    }
}

#booking-form label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: #495057;
}

#booking-form input,
#booking-form select {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
}

#booking-form button {
    background: #6f42c1;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

#booking-form button:hover {
    background: #5a2d91;
}

/* Recurring booking styles */
.recurring-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.recurring-checkbox-label {
    display: flex;
    align-items: center;
    margin: 0;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
}

.recurring-text {
    display: inline;
}

.recurring-checkbox {
    width: auto;
    margin: 0 0.1rem;
    transform: scale(1.2);
}

.recurring-checkbox-container {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.recurring-checkbox-container label {
    display: flex;
    align-items: center;
    margin: 0;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
}

.recurring-checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0;
    transform: scale(1.2);
}

#recurring-options {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

#recurring-options label {
    margin-top: 0.75rem;
    font-weight: 600;
    color: #495057;
}

#recurring-options input,
#recurring-options select {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
}

.recurring-date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
}

.recurring-info {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: #f3e8ff;
    border-left: 4px solid #6f42c1;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #495057;
}

/* Time Selection Styles */
.time-selection-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.time-selection-section label {
    margin-top: 0 !important;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
}

.time-selection-instructions {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #e3f2fd;
    border-radius: 6px;
    border-left: 4px solid #2196f3;
}

.instruction-text {
    font-size: 0.9rem;
    color: #1565c0;
    font-weight: 500;
}

.selected-times-display {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    gap: 1rem;
}

.selected-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.time-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.time-input-field {
    padding: 0.5rem;
    background-color: white;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #495057;
    width: 100%;
    max-width: 120px;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.time-input-field:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.time-input-field:valid {
    border-color: #28a745;
}

.time-value.selected {
    background-color: #e3f2fd;
    border-color: #2196f3;
    color: #1976d2;
    font-weight: 600;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(80px, 1fr));
    grid-template-rows: repeat(5, 1fr);
    gap: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.time-slot {
    padding: 0.5rem;
    text-align: center;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
}

.time-slot:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
}

.time-slot.start-time {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.time-slot.end-time {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.time-slot.in-range {
    background-color: #6f42c1;
    color: white;
    border-color: #6f42c1;
}

.time-slot.disabled {
    background-color: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
    opacity: 0.8;
    border-color: #f5c6cb;
}

.time-slot.disabled:hover {
    transform: none;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Daily view styles */
.daily-view-container {
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background: white;
}

.daily-view-container::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.daily-view-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

.daily-view-container::-webkit-scrollbar-thumb {
    background: #6f42c1;
    border-radius: 6px;
}

.daily-view-container::-webkit-scrollbar-thumb:hover {
    background: #5a359a;
}

.daily-view-actions {
    position: sticky;
    bottom: 0;
    padding: 1rem;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    z-index: 10;
}

.daily-view-actions .action-btn {
    margin: 0;
    padding: 1rem 1rem; /* double height for modal button */
}

/* New Daily Schedule Modal Styles */
#daily-schedule-modal .modal-content {
    background: linear-gradient(135deg, #f8f6ff 0%, #f0ebff 100%);
    border: 2px solid #6f42c1;
    box-shadow: 0 8px 32px rgba(111, 66, 193, 0.2);
}

#daily-schedule-modal h2 {
    color: #6f42c1;
    border-bottom: 2px solid #6f42c1;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

#daily-schedule-modal h3 {
    color: #5a2d91;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.daily-schedule-content {
    max-height: 70vh;
    overflow-y: auto;
}

.daily-schedule-list {
    padding: 1rem 0;
}

.schedule-room-section {
    margin-bottom: 2rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.schedule-room-header {
    background: #6f42c1;
    color: white;
    padding: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.schedule-booking-item {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.schedule-booking-item:last-child {
    border-bottom: none;
}

.schedule-booking-item.available {
    background: #e8f5e8;
    color: #155724;
}

.schedule-booking-item.booked {
    background: #f8d7da;
    color: #721c24;
}

.schedule-booking-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.schedule-time {
    font-weight: bold;
    font-size: 1rem;
}

.schedule-congregation {
    font-size: 0.9rem;
    opacity: 0.8;
}

.schedule-status {
    font-weight: normal;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.schedule-status.available {
    background: #d4edda;
    color: #155724;
}

.schedule-status.partially-available {
    background: #fff3cd;
    color: #856404;
}

.schedule-status.booked {
    background: #f5c6cb;
    color: #721c24;
}

/* Status container for inline layout */
.schedule-status-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Inline room book button styling */
.room-book-btn-inline {
    background: #6f42c1;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: normal;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

/* Inline edit button styling */
.edit-booking-btn-inline {
    background: #6f42c1;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: normal;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.edit-booking-btn-inline:hover {
    background: #5a359a;
}
}

.room-book-btn-inline:hover {
    background: #5a2d91;
}

#daily-view-grid {
    display: grid;
    grid-template-columns: 120px repeat(27, minmax(60px, 1fr));
    gap: 1px;
    background: #dee2e6;
    min-width: 1800px;
}

.room-section {
    display: contents;
}

.room-label {
    background: #f8f9fa;
    font-weight: 600;
    text-align: center;
    padding: 1rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #dee2e6;
    position: sticky;
    left: 0;
    z-index: 2;
}

.hour-cell {
    background: white;
    padding: 0.5rem;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    cursor: default;
}

.hour-cell:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hour-cell.booked {
    color: white;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
}

.hour-cell:not(.booked) {
    color: #28a745;
    font-weight: 500;
    border: 1px solid #d4edda;
}

.time-header {
    background: #6f42c1;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Form buttons styling */
.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.form-buttons button {
    flex: 1;
    min-width: 120px;
}





/* Responsive design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .calendar-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .action-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .calendar-nav {
        justify-content: center;
        text-align: center;
    }
    
    .legend-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legend-items {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .calendar-container {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .calendar-grid {
        width: 100%;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 1px;
    }
    
    .day-cell {
        min-height: 70px;
        font-size: 0.8rem;
        padding: 0.25rem;
        overflow: hidden;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .daily-view-container {
        max-height: 60vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    #daily-view-grid {
        grid-template-columns: 80px repeat(27, minmax(40px, 1fr));
        min-width: 1200px;
        font-size: 0.7rem;
    }
    
    .room-label {
        text-align: center;
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
        writing-mode: horizontal-tb;
    }
    
    .hour-cell {
        min-height: 40px;
        font-size: 0.7rem;
        padding: 0.25rem;
    }
    
    .time-header {
        padding: 0.25rem 0.125rem;
        font-size: 0.7rem;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-buttons button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Ensure calendar is visible on mobile */
    .calendar-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

}

@media (max-width: 480px) {
    .app-header {
        padding: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .month-title {
        font-size: 1.1rem;
    }
    
    .calendar-container {
        margin: 0;
        border-radius: 4px;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 0.5px;
    }
    
    .day-cell {
        min-height: 50px;
        padding: 0.125rem;
        font-size: 0.7rem;
    }
    
    .day-header {
        padding: 0.5rem 0.25rem;
        font-size: 0.7rem;
    }
    
    .action-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .main-content {
        padding: 0.5rem;
    }
}

/* Extra small screens (320px and below) */
@media (max-width: 320px) {
    .app-header {
        padding: 0.25rem;
    }
    
    .month-title {
        font-size: 1rem;
    }
    
    .calendar-grid {
        gap: 0;
    }
    
    .day-cell {
        min-height: 45px;
        padding: 0.1rem;
        font-size: 0.65rem;
        border-right: 0.5px solid #dee2e6;
        border-bottom: 0.5px solid #dee2e6;
    }
    
    .day-header {
        padding: 0.25rem;
        font-size: 0.65rem;
    }
    
    .action-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .main-content {
        padding: 0.25rem;
    }
}

/* My Bookings Modal Styles - Purple Theme */
#my-bookings-modal .modal-content {
    max-width: 800px;
    width: 95%;
    background: linear-gradient(135deg, #f8f4ff 0%, #f3e8ff 100%);
    border: 2px solid #e3d7f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(111, 66, 193, 0.1);
}

.my-bookings-title {
    color: #6f42c1;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #6f42c1;
    padding-bottom: 0.5rem;
}

.bookings-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.booking-card {
    background: white;
    border: 2px solid #e3d7f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(111, 66, 193, 0.1);
}

.booking-card:hover {
    box-shadow: 0 4px 16px rgba(111, 66, 193, 0.2);
    border-color: #6f42c1;
    transform: translateY(-2px);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.booking-date {
    font-weight: 600;
    color: #6f42c1;
    font-size: 1.1rem;
}

.booking-details {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.booking-edit-btn, .edit-booking-btn {
    background: #6f42c1;
    color: white;
    border: 2px solid #6f42c1;
    padding: 16px 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: normal;
    transition: all 0.3s ease;
    height: 48px;
    min-height: 48px;
}

.booking-edit-btn:hover, .edit-booking-btn:hover {
    background: #5a2d91;
    border-color: #5a2d91;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.no-bookings-message {
    text-align: center;
    color: #6f42c1;
    font-style: italic;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e3d7f0;
    box-shadow: 0 2px 8px rgba(111, 66, 193, 0.1);
}

/* Recurring booking indicators */
.recurring-indicator {
    background: #e8f5e8;
    color: black;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.recurring-info {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #e8f5e8;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    font-size: 0.85rem;
}

.recurring-label {
    font-weight: 600;
    color: #495057;
}

.recurring-value {
    color: #28a745;
    font-weight: 500;
}

.view-series-btn {
    background: #e8f5e8;
    color: black;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
    margin-left: 5px;
    transition: background-color 0.3s;
}

.view-series-btn:hover {
    background: #d4f0d4;
}

.booking-actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Bulk Delete Styles - Purple Theme */
.bulk-delete-controls {
    background: linear-gradient(135deg, #f8f4ff 0%, #f3e8ff 100%);
    border: 2px solid #e3d7f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: none;
    box-shadow: 0 2px 8px rgba(111, 66, 193, 0.1);
}

.bulk-delete-controls.active {
    display: block;
}

.bulk-select-all {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.bulk-select-all input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
    accent-color: #6f42c1;
}

.bulk-select-all label {
    font-weight: 500;
    color: #6f42c1;
    margin: 0;
}

.bulk-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-count {
    color: #6f42c1;
    font-size: 0.9rem;
    font-weight: 500;
}

.bulk-action-buttons {
    display: flex;
    gap: 0.5rem;
}

.bulk-delete-mode-btn {
    background: #6f42c1;
    color: white;
    border: 2px solid #6f42c1;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.bulk-delete-mode-btn:hover {
    background: #5a2d91;
    border-color: #5a2d91;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.bulk-delete-mode-btn.active {
    background: #6c757d;
    border-color: #6c757d;
}

.bulk-delete-mode-btn.active:hover {
    background: #5a6268;
    border-color: #5a6268;
}

.delete-selected-btn {
    background: #dc3545;
    color: white;
    border: 2px solid #dc3545;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.delete-selected-btn:hover {
    background: #c82333;
    border-color: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.delete-selected-btn:disabled {
    background: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cancel-bulk-delete-btn {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cancel-bulk-delete-btn:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.booking-checkbox {
    margin-right: 1rem;
    transform: scale(1.2);
    accent-color: #6f42c1;
}

.booking-card.bulk-mode {
    display: flex;
    align-items: flex-start;
}

.booking-card.bulk-mode .booking-content {
    flex: 1;
}

/* Recurring Series Modal Styles */
#recurring-series-modal {
    z-index: 1200;
}

.recurring-series-content {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.recurring-series-content h3 {
    color: #495057;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #6f42c1;
    padding-bottom: 0.5rem;
}

.recurring-series-content .series-info {
    margin-bottom: 1rem;
}

.recurring-series-content .series-info strong {
    color: #343a40;
    display: inline-block;
    min-width: 120px;
}

.recurring-series-content .dates-list {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 1rem;
    max-height: 200px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.recurring-series-buttons {
    justify-content: space-between;
    margin-top: 1.5rem;
}

.recurring-series-buttons .delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recurring-series-buttons .delete-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.recurring-series-buttons .ok-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.recurring-series-buttons .ok-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

/* Notification Modal Styling */
#notification-modal .modal-content {
    background: linear-gradient(135deg, #faf8ff 0%, #f0ebff 100%);
    border: 2px solid #6f42c1;
    max-width: 500px;
    width: 90%;
}

#notification-modal h2 {
    color: #6f42c1;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.notification-form p {
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.notification-form .form-group {
    margin-bottom: 1.5rem;
}

.notification-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #495057;
    font-weight: 500;
}

.notification-form input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.notification-form input[type="email"]:focus {
    outline: none;
    border-color: #6f42c1;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.notification-form input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.notification-form .form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.notification-form .save-btn {
    background: #6f42c1;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.notification-form .save-btn:hover {
    background: #5a2d91;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(111, 66, 193, 0.3);
}

.notification-form .cancel-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.notification-form .cancel-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

/* Subscribed Emails section in Notifications modal */
.subscribed-emails {
    margin-top: 1.5rem;
    border-top: 1px dashed #d1c4e9;
    padding-top: 1rem;
}

.subscribed-emails h3 {
    font-size: 1rem;
    color: #6f42c1;
    margin-bottom: 0.5rem;
}

.subscribed-emails-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subscribed-emails-list li {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    background: #ffffff;
    border: 1px solid #e8e0ff;
    border-radius: 6px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
}

.subscribed-emails-list li .email-icon {
    color: #6f42c1;
}
.email-input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
}

.add-email-btn {
    background: #6f42c1;
    color: white;
    border: none;
    padding: 0.6rem 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.add-email-btn:hover {
    background: #5a2d91;
    transform: translateY(-1px);
}
.remove-email-btn {
    background: #e9ecef;
    color: #495057;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.remove-email-btn:hover {
    background: #dee2e6;
}

.subscribed-help {
    margin-top: 0.25rem;
    color: #6c757d;
    font-size: 0.85rem;
}