/* 예약 이동 컨테이너 */
.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* 입력 그룹 스타일 */
.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: normal;
    font-size: 0.95em;
}

.input-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95em;
    background-color: #fff;
}

.input-group input:focus {
    border-color: #2196F3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

/* 버튼 그룹 레이아웃 */
.reservation-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 메인 버튼 그룹 - 한 줄로 정렬 */
.main-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* 예약 설정/취소 버튼 */
.main-buttons .btn-primary {
    flex: 1;  /* 남은 공간 모두 차지 */
    height: 48px;
    background: #2196F3;
    color: white;
    border-radius: 8px;
}

.main-buttons .btn-danger {
    flex: 1;  /* 남은 공간 모두 차지 */
    height: 48px;
    background: #E9ECEF;
    color: #495057;
    border-radius: 8px;
}

/* CSV 버튼 그룹 */
.csv-buttons {
    display: flex;
    gap: 8px;
}

.csv-buttons .btn {
    flex: 1;  /* 남은 공간 모두 차지 */
    height: 48px;
    background: #40C057;
    color: white;
    border-radius: 8px;
}

/* 공통 버튼 스타일 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 500;
}

.btn:hover {
    opacity: 0.9;
}

/* 파일 업로드 버튼 */
.upload-btn {
    position: relative;
    overflow: hidden;
}

.upload-btn input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* 예약 목록 스타일 */
.reservation-list {
    margin-top: 30px;
}

.reservation-item {
    background: #ffffff;
    border: 1px solid #e1e5ee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.reservation-item:hover {
    border-color: #4C6EF5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.reservation-info {
    flex: 1;
    padding-right: 20px;
}

.reservation-info p {
    margin: 8px 0;
    color: #4a5568;
    font-size: 0.95em;
    line-height: 1.5;
}

.reservation-info strong {
    color: #2d3748;
    font-weight: 600;
    margin-right: 8px;
}

.reservation-actions .btn-danger {
    padding: 10px 20px;
    font-size: 0.9em;
    min-width: 90px;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .reservation-container {
        padding: 15px;
    }

    .reservation-buttons {
        padding: 15px;
        gap: 10px;
    }

    .main-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .csv-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        width: 100%;
    }

    .reservation-item {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .reservation-info {
        padding-right: 0;
    }

    .reservation-actions {
        display: flex;
        justify-content: flex-end;
    }
} 