/* Calendar Styles */
.calendar-container {
    margin-bottom: 30px;
}

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

.calendar-month {
    font-size: 14px;
    font-weight: 600;
    color: #7c6fd6;
    letter-spacing: 1px;
}

.calendar-nav {
    background: transparent;
    border: none;
    color: #7c6fd6;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    transform: scale(1.2);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.calendar-weekdays div {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #999;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    background: #f9f9f9;
}

.calendar-day:hover {
    background: #e8e4f3;
    color: #7c6fd6;
}

.calendar-day.selected {
    background: #7c6fd6;
    color: white;
    font-weight: 600;
}

.calendar-day.today {
    border: 2px solid #7c6fd6;
}

.calendar-day.disabled {
    color: #ddd;
    cursor: not-allowed;
    background: transparent;
}

.calendar-day.disabled:hover {
    background: transparent;
    color: #ddd;
}

/* Time Picker Styles */
.form-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #7c6fd6;
    margin-bottom: 20px;
    text-align: center;
}

.time-picker {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.time-display {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9f9f9;
    padding: 15px 30px;
    border-radius: 15px;
    border: 2px solid #e8e8e8;
    position: relative;
}

.time-input {
    width: 60px;
    font-size: 32px;
    font-weight: 600;
    color: #7c6fd6;
    text-align: center;
    border: none;
    background: transparent;
    outline: none;
}

.time-separator {
    font-size: 32px;
    font-weight: 600;
    color: #7c6fd6;
}

.time-arrows {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 15px;
}

.time-arrow {
    background: transparent;
    border: none;
    color: #7c6fd6;
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.time-arrow:hover {
    transform: scale(1.2);
}

/* Remove number input arrows */
.time-input::-webkit-inner-spin-button,
.time-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.time-input[type='number'] {
    -moz-appearance: textfield;
}
