/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI';
    background: #f5f7fa;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    max-width: 500px;
    width: 100%;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
} */

.date-input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.date-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.date-input:hover {
    border-color: #6a11cb;
    background: white;
}

.date-input:focus {
    outline: none;
    border-color: #6a11cb;
    background: white;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.calendar-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    opacity: 0.5;
}

.picker-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.picker-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.picker-container {
    color: #ffffff !important;
    border-radius: 48px;
    background: rgb(40 40 41) !important;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.picker-title {
    font-size: 20px;
    font-weight: 600;
}

.close-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.date-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: #5c5c5e;
    color: #ffffff;
    border-radius: 42px;
}

.btn-cancel:hover {
    background: #e0e0e0;
    color: #000000;
}

.btn-confirm {
    background-color: rgba(126, 0, 152, 1);
    color: white;
    border-radius: 42px;
}

.btn-confirm:hover {
    background: #e0e0e0;
    color: #000000;
}

.wheel-picker {
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #36353d;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 0 10px;
}

.wheel-column {
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

.wheel-column {
    flex: 1;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;

    padding-top: 80px;
    padding-bottom: 80px;
}

.wheel-column::-webkit-scrollbar {
    display: none;
}

.wheel-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #eee;
    scroll-snap-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wheel-item:hover {
    color: #34c7e4;
}

.wheel-item.selected {
    color: #34c7e4;
    font-weight: 600;
    font-size: 18px;
}

.wheel-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 40px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.wheel-overlay::before,
.wheel-overlay::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #34c7e4;
    opacity: 0.3;
}

.wheel-overlay::before {
    top: 0;
}

.wheel-overlay::after {
    bottom: 0;
}

.selected-date {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #36353d;
    border-radius: 42px;
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 480px) {

    .picker-container {
        padding: 20px;
    }
}