/* Import Google Fonts - IBM Plex Sans */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

/* Body */
body {
    background: #ffffff;
    font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
}

/* Carduri cu gradient și shadow */
.bg-white {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%) !important;
    border: 1px solid rgba(0, 114, 206, 0.15);
    box-shadow: 
        0 4px 6px rgba(0, 114, 206, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.bg-white:hover {
    box-shadow: 
        0 10px 20px rgba(0, 114, 206, 0.12),
        0 3px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Headers */
h1, h2, h3 {
    color: #0072ce;
    font-weight: 500;
    font-family: "IBM Plex Sans", sans-serif;
}

h1 {
    font-size: 2rem;
}

/* Dropdown-uri */
select {
    border: 2px solid rgba(0, 114, 206, 0.2);
    background: white;
    font-family: "IBM Plex Sans", sans-serif;
    transition: all 0.3s ease;
}

select:hover {
    border-color: rgba(0, 114, 206, 0.4);
    box-shadow: 0 2px 8px rgba(0, 114, 206, 0.1);
}

select:focus {
    outline: none;
    border-color: #0072ce;
    box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.1);
}

/* Calendar */
.calendar-day {
    background: white;
    border: 1px solid rgba(0, 114, 206, 0.15);
    font-family: "IBM Plex Sans", sans-serif;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: rgba(0, 114, 206, 0.05);
    border-color: #0072ce;
    box-shadow: 0 2px 8px rgba(0, 114, 206, 0.15);
    transform: translateY(-1px);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #0072ce 0%, #0091ff 100%);
    border: 2px solid #0072ce;
    color: white;
    font-weight: 500;
    box-shadow: 
        0 4px 12px rgba(0, 114, 206, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.calendar-day.disabled {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #bdbdbd;
}

.calendar-day.other-month {
    background: #fafafa;
    color: #bdbdbd;
    border-color: #f0f0f0;
}

/* Time slots */
.time-slot {
    background: white;
    border: 2px solid rgba(0, 114, 206, 0.3);
    color: #0072ce;
    font-weight: 600;
    font-family: "IBM Plex Sans", sans-serif;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background: #0072ce;
    border-color: #0072ce;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 114, 206, 0.25);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: #0072ce;
    border: 2px solid #0072ce;
    color: white;
    box-shadow: 
        0 4px 15px rgba(0, 114, 206, 0.35),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Submit button */
.submit-button {
    background: linear-gradient(135deg, #ff6900 0%, #ff8533 100%);
    border: none;
    color: white;
    font-weight: 500;
    font-family: "IBM Plex Sans", sans-serif;
    box-shadow: 
        0 4px 15px rgba(255, 105, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff5500 0%, #ff7722 100%);
    box-shadow: 
        0 6px 20px rgba(255, 105, 0, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    box-shadow: none;
    cursor: not-allowed;
}

/* Form inputs */
.form-input {
    border: 2px solid rgba(0, 114, 206, 0.2);
    background: white;
    font-family: "IBM Plex Sans", sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0072ce;
    box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .bg-white {
        box-shadow: 
            0 2px 4px rgba(0, 114, 206, 0.08),
            0 1px 2px rgba(0, 0, 0, 0.05);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-white {
    animation: fadeIn 0.5s ease-out;
}
