/* Green Theme Styles */
.green-theme {
    --primary-color: #008A69;
    --primary-hover: #3e8e41;
    --secondary-color: #8BC34A;
    --accent-color: #CDDC39;
    --text-color: #333;
    --light-text: #777;
    --border-color: #ddd;
    --background-light: #f9f9f9;
}

.green-theme .submit-button {
    background-color: var(--primary-color);
    color: white;
}

.green-theme .submit-button:hover {
    background-color: var(--primary-hover);
}

.green-theme .submit-button.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.green-theme .submit-button.secondary:hover {
    background-color: var(--background-light);
}

.green-theme .calendar-day.selected {
    background-color: var(--primary-color);
    color: white;
}

.green-theme .time-slot.selected {
    background-color: var(--primary-color);
    color: white;
}

.green-theme .confirmation-icon {
    color: var(--primary-color);
}

.green-theme .rf-message-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid var(--primary-color);
}

.green-theme .rf-message-error {
    border: 1x solid #e63946;
    background-color: #fff5f5;
    text-align: center;
    padding: 5px;
    margin:10px 0 10px 0;
}

.green-theme .confirm-btn {
    margin-top: 20px;
    width: 100%;
    display: block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.green-theme .confirm-btn:hover {
    background-color: var(--primary-hover);
}

.green-theme .confirm-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* [Rest of your CSS remains the same, just add these green theme overrides] */
.ritefinance-style {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    font-family: 'Google Sans', Roboto, Arial, sans-serif;
    color: #3c4043;
}

.ritefinance-header {
    margin-bottom: 24px;
}

.ritefinance-header h1 {
    font-size: 22px;
    font-weight: 500;
    color: #5f6368;
    margin: 0 0 8px 0;
}

.host-info h2 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #202124;
}

.host-info h3 {
    font-size: 16px;
    font-weight: 400;
    margin: 4px 0 0 0;
    color: #5f6368;
}

.meeting-details {
    margin-bottom: 24px;
}

.meeting-info {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.meeting-info li {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.checkbox-placeholder {
    margin-right: 8px;
    color: #5f6368;
}

.meeting-note {
    font-size: 14px;
    color: #5f6368;
    margin: 16px 0 0 0;
}

.divider {
    border: none;
    border-top: 1px solid #dadce0;
    margin: 24px 0;
}

.section-title {
    font-size: 16px;
    font-weight: 500;
    margin: 16px 0px 16px 0;
    color: #202124;
}

.calendar-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.current-month {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.month-nav {
    background-color: #f1f3f4 !important;
    border: none !important;
    font-size: 20px !important;
    cursor: pointer !important;
    color: #5f6368 !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
}

.month-nav:hover {
    background: #f1f3f4;
}

.calendar-wrapper {
    margin-bottom: 24px;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #5f6368;
    margin-bottom: 8px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
}

.calendar-day:hover {
    background: #f1f3f4;
}

.calendar-day.selected {
    background: #1a73e8;
    color: white;
}

.calendar-day.disabled {
    color: #dadce0;
    cursor: default;
}

.calendar-day.today {
    font-weight: bold;
}

.timezone-selector {
    margin-bottom: 24px;
}

.timezone-selector select {
    background: none;
    border: none;
    font-size: 14px;
    color: #1a73e8;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
}

.time-slots-container {
    margin-bottom: 24px;
}

.time-slot {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 8px 8px 0;
    background: #f1f3f4;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.time-slot:hover {
    background: #e8f0fe;
}

.time-slot.selected {
    background: #1a73e8;
    color: white;
}

.instructions {
    font-size: 14px;
    color: #5f6368;
    margin: 0;
}

.attendee-form {
    margin-top: 24px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    flex: 1;
    margin-bottom: 16px;
}
.form-actions{
    margin-top: 38px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #5f6368;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    background-color: #ffffff;
    border-color: #CDD8C6;
    border-width: 2px 2px 2px 2px;
    border-radius: 12px 12px 12px 12px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #008A69;
    outline: none;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background: #008A69;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.submit-button:hover {
    background: #008A69;
}

.confirmation-message {
    text-align: center;
    padding: 40px 0;
}

.confirmation-icon {
    font-size: 48px;
    color: #34a853;
    margin-bottom: 16px;
}

.confirmation-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 16px 0;
    color: #202124;
}

.confirmation-details {
    font-size: 14px;
    margin-bottom: 16px;
    color: #5f6368;
}

.confirmation-note {
    font-size: 14px;
    color: #5f6368;
    margin: 16px 0 24px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #dadce0;
}

.footer-link {
    font-size: 12px;
    color: #5f6368;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .ritefinance-style {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
.meeting-info {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.meeting-info li {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.meeting-info .dashicons {
    margin-right: 10px;
    color: #4CAF50; /* Match your green theme */
    width: 20px;
    text-align: center;
}

/* Remove the old checkbox placeholder */
.checkbox-placeholder {
    display: none;
}