/* Agendamento Nativo */
.fr-ouro-scheduling-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: rgba(20, 18, 16, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.fr-scheduling-calendar-wrapper {
    width: 100%;
}

.fr-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.fr-calendar-header button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #44403c;
    color: #f5f5f4;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

.fr-calendar-header button:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.fr-cal-month-title {
    font-weight: 600;
    color: #d4af37;
    font-size: 16px;
}

.fr-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    color: #a8a29e;
    font-weight: bold;
    margin-bottom: 10px;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #e7e5e4;
    border-radius: 8px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    user-select: none;
}

.calendar-day:hover:not(.disabled) {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.calendar-day.selected {
    background: #d4af37 !important;
    color: #0c0a09 !important;
    border-color: #d4af37 !important;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.calendar-day.disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background: transparent;
    border-color: transparent;
}

.fr-scheduling-hours-wrapper {
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding-top: 20px;
}

.fr-scheduling-hours-wrapper h4 {
    margin: 0 0 15px 0;
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
}

.fr-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.fr-hour-btn {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #e7e5e4 !important;
    padding: 10px 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
    outline: none !important;
    box-shadow: none !important;
}

.fr-hour-btn:hover {
    border-color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.1) !important;
    color: #e7e5e4 !important;
}

.fr-hour-btn:focus,
.fr-hour-btn:active,
.fr-hour-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    color: #e7e5e4 !important;
}

.fr-hour-btn.selected,
.fr-hour-btn.selected:focus,
.fr-hour-btn.selected:active,
.fr-hour-btn.selected:hover {
    background: #d4af37 !important;
    color: #0c0a09 !important;
    border-color: #d4af37 !important;
    font-weight: bold !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4) !important;
}
