﻿/* ========== 고객 관리 페이지 스타일 ========== */

/* 메인 콘텐츠 영역 */
.content {
    margin-left: 250px;
    padding: 20px;
    min-height: 100vh;
}

/* 페이지 헤더 */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .page-header h2 {
        margin: 0;
        font-size: 2em;
        font-weight: bold;
    }

    .page-header p {
        margin: 10px 0 0 0;
    }

/* 검색 및 등록 섹션 */
.search-register-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 테이블 스타일 */
.table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .table thead {
        background-color: #343a40;
        color: white;
    }

    .table tbody tr {
        transition: all 0.3s ease;
    }

        .table tbody tr:hover {
            background-color: #f5f5f5;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

/* 로딩 표시 */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

    .loading .spinner-border {
        color: #667eea;
        width: 3rem;
        height: 3rem;
    }

/* 모달 스타일 */
.modal-header {
    background-color: #667eea;
    color: white;
}

    .modal-header .btn-close {
        filter: brightness(0) invert(1);
    }

/* 고객 상세 정보 섹션 */
.customer-detail-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.section-title {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.customer-detail-section p {
    margin-bottom: 10px;
}

/* 차량 항목 */
.vehicle-item {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
}

    .vehicle-item p {
        margin-bottom: 8px;
    }

/* 배지 스타일 */
.badge {
    padding: 5px 10px;
    font-size: 0.9em;
}

/* 버튼 스타일 */
.btn-sm {
    padding: 5px 10px;
    font-size: 0.85em;
}

/* 반응형 디자인 - 모바일 */
@media (max-width: 768px) {
    /* 메인 콘텐츠 여백 제거 */
    .content {
        margin-left: 0;
        padding: 10px;
    }

    /* 페이지 헤더 */
    .page-header {
        padding: 20px;
        margin-bottom: 20px;
    }

        .page-header h2 {
            font-size: 1.5em;
        }

    /* 검색 및 등록 섹션 */
    .search-register-section {
        padding: 15px;
    }

    /* 테이블 반응형 */
    .table-responsive {
        font-size: 0.9em;
    }

    .table th,
    .table td {
        padding: 8px 5px;
    }

    /* 모바일 메뉴 토글 버튼 */
    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1001;
        background: #343a40;
        color: white;
        border: none;
        padding: 10px;
        border-radius: 5px;
    }
}

/* 반응형 디자인 - 데스크톱 */
@media (min-width: 769px) {
    /* 데스크톱에서는 모바일 메뉴 토글 버튼 숨김 */
    .mobile-menu-toggle {
        display: none !important;
    }
}
