/* 관리자 페이지 스타일 */
.admin-page {
    min-height: calc(100vh - 100px);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 0;
}

.admin-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 섹션 */
.admin-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.admin-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

/* 탭 네비게이션 */
.admin-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-btn {
    padding: 15px 30px;
    margin: 0 5px;
    border: none;
    background: transparent;
    color: #7f8c8d;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    color: #2980b9;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* 탭 콘텐츠 */
.tab-content {
    display: none;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* 목록 헤더 (검색 + 추가 버튼) */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* 검색 및 필터 */
.search-filter {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

/* 관광지 추가 버튼 */
.add-spot-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.add-spot-btn:hover {
    background: linear-gradient(135deg, #219a52, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.search-filter input,
.search-filter select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.search-filter input:focus,
.search-filter select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
}

/* 검색 버튼 */
.search-filter .search-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.search-filter .search-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.search-filter .search-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

/* 관광지 그리드 */
.tourist-spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.tourist-spot-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.tourist-spot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tourist-spot-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.spot-category {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.spot-info {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.spot-description {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.spot-actions {
    display: flex;
    gap: 10px;
}

.edit-btn,
.delete-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-btn {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
}

.edit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.delete-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.delete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* 폼 스타일 */
.add-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

/* 통계 개요 (총 관광지 수 + 카테고리 차트) */
.stats-overview {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.stats-overview .stat-card-large {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}

.stats-overview .stat-card-large .stat-number {
    font-size: 4rem;
}

.stats-overview .category-chart {
    flex: 1;
    margin-top: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.stats-overview .category-chart h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* 통계 그리드 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-card h3 {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 통계 섹션 */
.stats-section {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stats-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 600;
}

/* 차트 섹션 */
.category-chart,
.user-chart {
    margin-top: 30px;
}

.category-chart h3,
.user-chart h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.chart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.chart-bar {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.chart-bar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.chart-bar .category-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.chart-bar .category-count {
    font-size: 1.5rem;
    font-weight: 700;
}

/* 모달 관련 스타일은 common/modal.css로 이동됨 */

/* 위치 검색 스타일 */
.location-search-container {
    margin-top: 10px;
}

.location-search-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.location-search-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.location-search-input-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
}

.location-search-input-group .search-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.location-search-input-group .search-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.location-search-input-group .search-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.location-search-results {
    max-height: 200px;
    overflow-y: auto;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin-top: 10px;
    background: white;
}

.location-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
}

.location-result-item:hover {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.location-result-item:last-child {
    border-bottom: none;
}

.location-result-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.location-result-address {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.location-selected-info {
    margin-top: 15px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 10px;
    border: 2px solid #4caf50;
}

.location-selected-info p {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.location-selected-info .clear-btn {
    padding: 8px 16px;
    background: #ef5350;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-selected-info .clear-btn:hover {
    background: #e53935;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(239, 83, 80, 0.3);
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

/* 사용자 관리 스타일 */
.users-header {
    margin-bottom: 30px;
}

.users-controls {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.add-user-btn {
    padding: 12px 24px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.add-user-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.users-table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.users-table th,
.users-table td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.users-table th {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.users-table td {
    color: #34495e;
    font-size: 0.9rem;
}

/* ID 열 너비 제한 */
.users-table th:first-child,
.users-table td:first-child {
    max-width: 80px;
    min-width: 60px;
    overflow-x: auto;
    /* text-overflow: ellipsis; */
    white-space: nowrap;
    /* word-break: break-all; */
}

.users-table th:last-child,
.users-table td:last-child {
    width: 180px;
}

.users-table tbody tr {
    transition: all 0.3s ease;
}

.users-table tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.001);
}

.user-role-badge,
.user-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    min-width: 70px;
}

.user-role-badge.admin {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.user-role-badge.vip {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
}

.user-role-badge.member {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
}

.user-status-badge.active {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.user-status-badge.inactive {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
    color: white;
}

.user-status-badge.suspended {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.user-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.user-profile-btn,
.user-edit-btn,
.user-delete-btn,
.user-toggle-btn {
    padding: 6px 12px;
    width: 70px;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.user-profile-btn {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white;
}

.user-profile-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.user-edit-btn {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
}

.user-edit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.user-delete-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.user-delete-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.user-toggle-btn {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
}

.user-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
}

.users-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.pagination-btn {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    background: white;
    color: #7f8c8d;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover {
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border-color: transparent;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0 15px;
}

/* ============================================
   유저 신고 관리 영역 스타일
   ============================================ */

/* 유저 신고 관리 헤더 */
.reports-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.reports-header h2 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
}

.reports-header .section-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* 유저 신고 관리 컨트롤 */
.reports-controls {
    margin-bottom: 25px;
}

.reports-controls .search-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.reports-controls .search-filter input,
.reports-controls .search-filter select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.reports-controls .search-filter input {
    flex: 1;
    min-width: 250px;
}

.reports-controls .search-filter select {
    min-width: 150px;
}

.reports-controls .search-filter input:focus,
.reports-controls .search-filter select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
}

/* 유저 신고 테이블 컨테이너 */
.reports-table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    margin-bottom: 20px;
}

/* 유저 신고 테이블 */
.reports-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.9rem;
}

.reports-table thead {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.reports-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 30px;
    position: sticky;
    top: 0;
    z-index: 10;
    white-space: nowrap;
}

.reports-table td {
    padding: 15px 3px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    color: #34495e;
    vertical-align: top;
}

.reports-table tbody tr {
    transition: all 0.3s ease;
}

.reports-table tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.001);
}

.reports-table tbody tr:last-child td {
    border-bottom: none;
}

/* 신고 유형 배지 */
.reports-table td span[style*='background: #007bff'] {
    display: inline-block;
    background: linear-gradient(45deg, #3498db, #2980b9) !important;
    color: white !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    margin-right: 6px !important;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

/* 상태 배지 스타일 개선 */
.reports-table td span[style*='background: #ffc107'] {
    background: linear-gradient(45deg, #ffc107, #ff9800) !important;
    color: #000 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.reports-table td span[style*='background: #28a745'] {
    background: linear-gradient(45deg, #27ae60, #2ecc71) !important;
    color: white !important;
    padding: 6px 8px !important;
    min-width: 65px !important;
    border-radius: 6px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
}

/* 신고 내용 셀 스타일 */
.reports-table td > div {
    line-height: 1.5;
}

.reports-table td > div[style*='max-width: 300px'] {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 4px;
}

.reports-table td > div[style*='color: #666'] {
    color: #555 !important;
    margin-top: 6px;
}

.reports-table td > div[style*='color: #999'] {
    color: #7f8c8d !important;
    margin-top: 4px;
}

/* 작업 버튼 영역 */
.reports-table td:last-child {
    white-space: nowrap;
}

.reports-table .approve-btn,
.reports-table .reject-btn,
.reports-table .delete-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-right: 5px;
}

.reports-table .approve-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.reports-table .approve-btn:hover {
    background: linear-gradient(45deg, #218838, #1ea080);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.reports-table .reject-btn {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
}

.reports-table .reject-btn:hover {
    background: linear-gradient(45deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.reports-table .delete-btn {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
    color: white;
}

.reports-table .delete-btn:hover {
    background: linear-gradient(45deg, #7f8c8d, #6c7a7d);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
}

/* 유저 신고 페이지네이션 */
.reports-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
    flex-wrap: wrap;
}

.reports-pagination .pagination-btn {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    background: white;
    color: #7f8c8d;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.reports-pagination .pagination-btn:hover:not(:disabled) {
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-1px);
}

.reports-pagination .pagination-btn.active {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border-color: transparent;
}

.reports-pagination .pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.reports-pagination .pagination-info {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0 15px;
}

/* 반응형 디자인 - 유저 신고 관리 */
@media (max-width: 768px) {
    .reports-controls .search-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .reports-controls .search-filter input,
    .reports-controls .search-filter select {
        width: 100%;
        min-width: auto;
    }

    .reports-table th,
    .reports-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .reports-table .approve-btn,
    .reports-table .reject-btn,
    .reports-table .delete-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin-right: 3px;
    }

    .reports-pagination {
        gap: 5px;
    }

    .reports-pagination .pagination-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* ============================================
   공통코드 관리 영역 스타일
   ============================================ */

/* 공통코드 탭 컨텐츠 */
#common-codes-tab {
    padding: 20px;
}

/* 공통코드 헤더 영역 */
.common-codes-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.common-codes-header h2 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.8rem;
}

.section-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* 공통코드 메인 컨테이너 */
.common-codes-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 섹션 헤더 공통 스타일 */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.section-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.section-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.section-controls .search-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-controls .search-filter label {
    font-weight: 500;
    color: #34495e;
}

/* 코드 그룹 섹션 */
.code-groups-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

/* 코드 그룹 그리드 */
.code-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* 코드 그룹 카드 */
.code-group-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.code-group-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.code-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.code-group-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.code-group-code {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.code-group-info {
    margin-bottom: 15px;
}

.code-group-info p {
    margin: 8px 0;
    color: #555;
    font-size: 0.9rem;
}

.code-group-info strong {
    color: #2c3e50;
    margin-right: 5px;
}

.code-group-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.code-group-actions .edit-btn,
.code-group-actions .delete-btn {
    flex: 1;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.code-group-actions .edit-btn {
    background: #3498db;
    color: white;
}

.code-group-actions .edit-btn:hover {
    background: #2980b9;
}

.code-group-actions .delete-btn {
    background: #e74c3c;
    color: white;
}

.code-group-actions .delete-btn:hover {
    background: #c0392b;
}

/* 코드 섹션 */
.codes-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

/* 코드 컨트롤 */
.codes-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.add-code-btn,
.add-group-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.add-code-btn:hover,
.add-group-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

/* 코드 그룹 필터 */
#code-group-filter {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
}

/* 코드 테이블 컨테이너 */
.codes-table-container {
    background: white;
    border-radius: 8px;
    overflow-x: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 코드 테이블 */
.codes-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.codes-table thead {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}

.codes-table thead th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #1a252f;
}

.codes-table tbody {
    background: white;
}

.codes-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s;
}

.codes-table tbody tr:hover {
    background: #f8f9fa;
}

.codes-table tbody td {
    padding: 12px 15px;
    color: #555;
}

.codes-table tbody .edit-btn,
.codes-table tbody .delete-btn,
.codes-table tbody .toggle-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 5px;
    transition: all 0.2s;
}

.codes-table tbody .edit-btn {
    background: #3498db;
    color: white;
}

.codes-table tbody .edit-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.codes-table tbody .delete-btn {
    background: #e74c3c;
    color: white;
}

.codes-table tbody .delete-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

.codes-table tbody .toggle-btn {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.codes-table tbody .toggle-btn:hover {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(155, 89, 182, 0.3);
}

/* 공통코드 모달 스타일 (기존 모달 스타일과 동일하게 사용) */
#add-group-modal,
#edit-group-modal,
#add-code-modal,
#edit-code-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

#add-group-modal .modal-content,
#edit-group-modal .modal-content,
#add-code-modal .modal-content,
#edit-code-modal .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#add-group-modal .form-group,
#edit-group-modal .form-group,
#add-code-modal .form-group,
#edit-code-modal .form-group {
    margin-bottom: 20px;
}

#add-group-modal label,
#edit-group-modal label,
#add-code-modal label,
#edit-code-modal label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

#add-group-modal input[type='text'],
#add-group-modal input[type='number'],
#add-group-modal textarea,
#edit-group-modal input[type='text'],
#edit-group-modal input[type='number'],
#edit-group-modal input[readonly],
#edit-group-modal textarea,
#edit-group-modal select,
#add-code-modal input[type='text'],
#add-code-modal input[type='number'],
#add-code-modal select,
#add-code-modal textarea,
#edit-code-modal input[type='text'],
#edit-code-modal input[type='number'],
#edit-code-modal input[readonly],
#edit-code-modal select,
#edit-code-modal textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

#add-group-modal input[readonly],
#edit-group-modal input[readonly],
#edit-code-modal input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

#add-group-modal .submit-btn,
#edit-group-modal .submit-btn,
#add-code-modal .submit-btn,
#edit-code-modal .submit-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

#add-group-modal .submit-btn:hover,
#edit-group-modal .submit-btn:hover,
#add-code-modal .submit-btn:hover,
#edit-code-modal .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

/* 데이터 관리 스타일 */
.export-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.export-btn {
    padding: 12px 24px;
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.export-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(155, 89, 182, 0.3);
}

.export-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #9b59b6;
}

.export-info p {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-weight: 600;
}

.export-info ul {
    margin: 0;
    padding-left: 20px;
    color: #34495e;
}

.export-info li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .admin-page {
        padding: 20px 0;
    }

    .admin-page .container {
        padding: 0 15px;
    }

    .admin-header {
        padding: 20px;
        margin-bottom: 30px;
    }

    .admin-header h1 {
        font-size: 2rem;
    }

    .admin-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        margin: 0;
        padding: 12px 20px;
    }

    .tab-content {
        padding: 20px;
    }

    .search-filter {
        flex-direction: column;
        gap: 15px;
    }

    .tourist-spots-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-overview {
        flex-direction: column;
    }

    .stats-overview .stat-card-large {
        flex: none;
        min-height: auto;
        padding: 30px;
    }

    .stats-overview .stat-card-large .stat-number {
        font-size: 3rem;
    }

    .chart-container {
        flex-direction: column;
        align-items: center;
    }

    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
        max-height: 80vh;
    }

    .users-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .add-user-btn {
        width: 100%;
        margin-top: 15px;
    }

    .users-table th,
    .users-table td {
        padding: 8px 6px;
        font-size: 0.8rem;
    }

    .user-actions {
        flex-direction: column;
        gap: 4px;
    }

    .user-profile-btn,
    .user-edit-btn,
    .user-delete-btn,
    .user-toggle-btn {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .users-pagination {
        flex-wrap: wrap;
        gap: 5px;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .export-buttons {
        flex-direction: column;
        align-items: center;
    }

    .export-btn {
        width: 100%;
        max-width: 300px;
    }

    .export-info {
        padding: 15px;
    }

    .export-info ul {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .spot-actions {
        flex-direction: column;
    }

    .admin-header h1 {
        font-size: 1.8rem;
    }
}

/* 사진 추가 신청 관리 스타일 */
.requests-header {
    margin-bottom: 30px;
}

.requests-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.requests-controls {
    margin-bottom: 20px;
}

.requests-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.requests-table {
    width: 100%;
    border-collapse: collapse;
}

.requests-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.requests-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.requests-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.requests-table tbody tr:hover {
    background-color: #f8f9fa;
}

.requests-table tbody tr:last-child td {
    border-bottom: none;
}

.approve-btn {
    padding: 6px 12px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.approve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.reject-btn {
    padding: 6px 12px;
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.reject-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.requests-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.requests-pagination button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.requests-pagination button:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #3498db;
}

.requests-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.requests-pagination span {
    padding: 0 5px;
    color: #999;
}

/* ========== 이미지 관리 섹션 스타일 ========== */
.image-management-section {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    background: #f9f9f9;
}

.image-management-section > label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: block;
}

/* 등록된 이미지 섹션 */
.registered-images {
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.registered-images h4,
.new-images h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #3498db;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.image-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.image-list .no-images {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    grid-column: 1 / -1;
    padding: 20px;
}

.image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    background: white;
    transition: all 0.3s ease;
}

.image-item:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.image-item.is-rep {
    border-color: #f39c12;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.image-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.image-item .image-actions {
    display: flex;
    gap: 5px;
    padding: 8px;
    background: #f8f9fa;
    justify-content: center;
}

.image-item .image-actions button {
    padding: 5px 10px;
    font-size: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-item .set-rep-btn {
    background: #f39c12;
    color: white;
}

.image-item .set-rep-btn:hover {
    background: #e67e22;
}

.image-item .set-rep-btn.active {
    background: #27ae60;
}

.image-item .delete-img-btn {
    background: #e74c3c;
    color: white;
}

.image-item .delete-img-btn:hover {
    background: #c0392b;
}

.image-item .rep-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #f39c12;
    color: white;
    padding: 3px 8px;
    font-size: 0.7rem;
    border-radius: 4px;
    font-weight: 600;
}

/* 새 이미지 추가 섹션 */
.new-images {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.file-upload-area {
    position: relative;
}

.file-upload-area .file-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.file-upload-area .file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.file-upload-area .file-label:hover {
    border-color: #3498db;
    background: #eef7fc;
}

.file-upload-area .file-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.file-upload-area .file-text {
    color: #666;
    font-size: 0.9rem;
}

/* 선택된 파일 미리보기 */
.selected-files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.selected-files:empty {
    display: none;
}

.preview-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.preview-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.preview-item .remove-preview {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-item .remove-preview:hover {
    background: #c0392b;
}

/* ========== 처벌 설정 모달 스타일 ========== */
.penalty-modal-content {
    max-width: 550px;
}

.penalty-info-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.penalty-info-section h4 {
    margin: 0 0 10px 0;
    color: #856404;
    font-size: 0.95rem;
}

.penalty-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.penalty-info-item {
    display: flex;
    flex-direction: column;
}

.penalty-info-item .label {
    font-size: 0.75rem;
    color: #856404;
    margin-bottom: 2px;
}

.penalty-info-item .value {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.penalty-info-item.full-width {
    grid-column: span 2;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
}

.checkbox-group input[type='checkbox'] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #3498db;
}

/* ========== 사진 추가 신청 상세 모달 스타일 ========== */
.photo-request-modal-content {
    max-width: 700px;
}

.photo-request-detail-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo-request-spot-info h3,
.photo-request-image-section h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.1rem;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
}

.spot-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.spot-info-grid .info-item {
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 8px;
}

.spot-info-grid .info-item:last-child {
    grid-column: span 2;
}

.spot-info-grid .info-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spot-info-grid .info-value {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
}

.photo-request-image-container {
    display: flex;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    min-height: 300px;
}

.photo-request-image-container img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 승인/거부 버튼 스타일 */
.approve-btn {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.approve-btn:hover {
    background: linear-gradient(45deg, #219a52, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.reject-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reject-btn:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.delete-btn {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: linear-gradient(45deg, #7f8c8d, #6c7a7d);
    transform: translateY(-1px);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.cancel-btn {
    background: #f8f9fa;
    color: #666;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #e9ecef;
    border-color: #ccc;
}

.required {
    color: #e74c3c;
}

/* 신고 처리 완료 상태 배지 */
.status-badge-completed {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
}

.status-badge-rejected {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* 비활성화된 카테고리 관광지 카드 스타일 */
.tourist-spot-card.inactive-category {
    opacity: 0.6;
    position: relative;
    filter: grayscale(30%);
    border: 2px solid #dc3545;
}

.tourist-spot-card.inactive-category:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 비활성화 배지 스타일 */
.inactive-badge {
    display: inline-block;
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

/* 비활성화/활성화 토글 버튼 */
.toggle-btn {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    background: linear-gradient(45deg, #8e44ad, #7d3c98);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
}

.toggle-btn.active {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.toggle-btn.active:hover {
    background: linear-gradient(45deg, #219a52, #27ae60);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.toggle-btn.inactive {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.toggle-btn.inactive:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}
