/* 심플하고 깔끔한 한국형 디자인 */

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

:root {
    --primary-color: #4a90e2;
    --success-color: #52c41a;
    --danger-color: #f5222d;
    --warning-color: #faad14;

    --bg-primary: #ffffff;
    --bg-secondary: #f5f7fa;
    --bg-hover: #e8edf3;

    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;

    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

    --spacing: 1rem;
    --radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', '맑은 고딕', sans-serif;
    background: #f5f5f5;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    border-bottom: 2px solid var(--border-color);
}

.header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* 통계 카드 컨테이너 */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    border-left: 3px solid var(--border-color);
}

.stat-card:hover {
    border-color: var(--primary-color);
    border-left-color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(74, 144, 226, 0.12);
}

.stat-card:nth-child(1) {
    border-left-color: var(--primary-color);
}

.stat-card:nth-child(2) {
    border-left-color: var(--success-color);
}

.stat-card:nth-child(3) {
    border-left-color: var(--warning-color);
}

.stat-content {
    width: 100%;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Panel */
.panel {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.panel-full {
    grid-column: 1 / -1;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.panel-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
}

.panel-body {
    padding: 1.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.region-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.region-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
    user-select: none;
}

.checkbox-label:hover {
    background: var(--bg-hover);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Filter Row */
.filter-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Radio Group */
.radio-group {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.25rem;
    overflow: hidden;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group label {
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #666;
    transition: all 0.2s;
    border-radius: 4px;
    white-space: nowrap;
    user-select: none;
}

.radio-group input[type="radio"]:checked + label {
    background: #ffffff;
    color: #333;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.radio-group label:hover {
    color: #333;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    flex: 1;
    min-width: 200px;
}

.search-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: none;
    outline: none;
    font-size: 0.85rem;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    padding: 0.5rem 0.75rem;
    border: none;
    background: #4a90e2;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background: #357abd;
}

.search-btn svg {
    width: 16px;
    height: 16px;
}

/* Filter Select */
.filter-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #ffffff;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color 0.2s;
}

.filter-select:focus {
    border-color: #4a90e2;
}

/* Filter Date */
.filter-date {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #ffffff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    min-width: 140px;
}

.filter-date:focus {
    border-color: #4a90e2;
}

.filter-date::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

.filter-date::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Export Excel Button */
.export-excel-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1px solid #4a90e2;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #4a90e2;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-weight: 500;
}

.export-excel-btn:hover {
    background: #357abd;
    border-color: #357abd;
}

.export-excel-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.export-excel-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.input-field,
select.input-field {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.input-field:focus,
select.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
}

.input-hint {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

textarea.input-field {
    resize: vertical;
    font-family: inherit;
}

.optimization-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.btn:hover {
    background: var(--bg-hover);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #3a7bc8;
    border-color: #3a7bc8;
}

.btn-secondary {
    background: var(--bg-secondary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.btn-block {
    width: 100%;
}

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

/* Badge */
.badge,
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Progress */
.progress-section {
    margin: 1.5rem 0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.progress-bar {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Stats */
.stats-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stats-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* 통계 카드 스타일은 상단에 정의됨 (.stats-container, .stat-card 등) */

/* Files List */
.files-list {
    max-height: 400px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
}

.file-item:hover {
    background: var(--bg-hover);
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.file-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Logs Table */
.logs-table {
    overflow-x: auto;
}

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

.logs-table th,
.logs-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.logs-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.logs-table td {
    font-size: 0.9rem;
}

.logs-table tr:hover {
    background: var(--bg-secondary);
}

/* Empty Message */
.empty-message {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

/* Table */
.table-container {
    overflow-x: visible;
    margin-bottom: 1rem;
    width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.data-table th,
.data-table td {
    padding: 0.5rem 0.4rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    color: #333;
}

.data-table td:nth-child(7) {
    /* 주소 열 - 줄바꿈 허용 */
    white-space: normal;
    word-break: break-word;
    max-width: 0;
    font-size: 0.75rem;
    color: #666;
}

.data-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 10;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}

.data-table tbody tr {
    background: #ffffff;
}

.data-table tbody tr:hover {
    background: #f5f7fa;
}


.data-table select {
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.85rem;
}

.data-table button {
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
}

/* Place ID Link */
.place-id-link {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s, text-decoration 0.2s;
    font-size: 0.7rem;
    word-break: break-all;
}

.place-id-link:hover {
    color: #357abd;
    text-decoration: underline;
}

/* 네이버 ID 스타일 (초록색) */
.place-id-naver {
    color: #2db400; /* 네이버 초록색 */
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.7rem;
    word-break: break-all;
    background-color: #f0f9f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.place-id-naver:hover {
    color: #1f8e00;
    background-color: #e0f5e0;
    text-decoration: underline;
}

/* 카카오 ID 스타일 (노란색) */
.place-id-kakao {
    color: #3c1e1e; /* 노란 배경에 맞는 어두운 텍스트 */
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.7rem;
    word-break: break-all;
    background-color: #fee500; /* 카카오 노란색 */
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.place-id-kakao:hover {
    background-color: #ffd700;
    text-decoration: underline;
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s, text-decoration 0.2s;
    font-size: 0.7rem;
    word-break: break-all;
}

.place-id-link:hover {
    color: #357abd;
    text-decoration: underline;
}

/* Phone Link */
.phone-link {
    cursor: pointer;
    user-select: none;
    color: #4a90e2;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s, text-decoration 0.2s;
    font-weight: 500;
    display: inline-block;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}

.phone-link:hover {
    color: #357abd;
    text-decoration: underline;
    background-color: #f0f7ff;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Log Container */
.log-container {
    max-height: 400px;
    overflow-y: auto;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1rem;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

.log-entry {
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    border-left: 3px solid var(--primary-color);
    background: var(--bg-primary);
    border-radius: 4px;
}

.log-entry.info {
    border-left-color: var(--primary-color);
}

.log-entry.success {
    border-left-color: var(--success-color);
}

.log-entry.warning {
    border-left-color: var(--warning-color);
}

.log-entry.error {
    border-left-color: var(--danger-color);
}

.log-time {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.log-message {
    color: var(--text-primary);
}

/* Status Buttons */
.status-buttons {
    display: flex;
    gap: 0.15rem;
    flex-wrap: wrap;
    white-space: normal;
    align-items: center;
}

.status-btn {
    padding: 0.25rem 0.5rem;
    border: 1px solid #ddd;
    background: #ffffff;
    color: #666;
    border-radius: 3px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    font-weight: 400;
    line-height: 1.3;
    margin-right: 0.2rem;
    min-width: 50px;
}

.status-btn:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.status-btn.active {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
    font-weight: 500;
}

/* Memo Cell */
.memo-cell {
    position: relative;
    padding: 0 !important;
}

.memo-display {
    cursor: pointer;
    color: #666;
    white-space: normal;
    word-break: break-word;
    padding: 0.3rem 0.5rem;
    min-height: 1.5rem;
    border-radius: 3px;
    transition: background-color 0.15s;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.memo-display:hover {
    background-color: #f0f0f0;
    color: #333;
}

.memo-display:empty::before {
    content: '메모 입력...';
    color: #999;
    font-style: normal;
}

.memo-input {
    width: 100%;
    padding: 0.3rem 0.5rem;
    border: 1px solid #4a90e2;
    border-radius: 3px;
    font-size: 0.8rem;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
    outline: none;
}

.memo-input:focus {
    border-color: #357abd;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

/* 실시간 수집 상태 바 */
.collection-status-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: slideDown 0.5s ease-out;
}

.collection-status-bar.active {
    display: flex;
}

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

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    position: relative;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.status-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.status-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.status-details .separator {
    opacity: 0.5;
}

.status-details strong {
    color: #4ade80;
    font-weight: 700;
}

/* 수집 진행 애니메이션 바 */
.collection-progress-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    animation: progressMove 2s linear infinite;
    width: 30%;
    border-radius: 0 0 var(--radius) var(--radius);
}

@keyframes progressMove {
    0% {
        left: -30%;
    }
    100% {
        left: 100%;
    }
}

.collection-status-bar {
    position: relative;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .main-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* 전화번호 상태 선택 모달 - 강력한 스타일 적용 */
#phone-status-modal .phone-status-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem !important;
    margin-top: 1.5rem !important;
    width: 100% !important;
}

#phone-status-modal .phone-status-btn {
    padding: 1.75rem 2rem !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #1a1a1a !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    width: 100% !important;
    margin: 0 !important;
    font-family: inherit !important;
}

#phone-status-modal .phone-status-btn:hover {
    background: #f0f7ff !important;
    border-color: #4a90e2 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
}

#phone-status-modal .phone-status-btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12) !important;
}

#phone-status-modal .phone-call-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%) !important;
    color: #ffffff !important;
    border-color: #4a90e2 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.4) !important;
}

#phone-status-modal .phone-call-btn:hover {
    background: linear-gradient(135deg, #357abd 0%, #2a5f8f 100%) !important;
    border-color: #357abd !important;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5) !important;
}

#phone-status-modal .phone-cancel-btn {
    background: #f5f5f5 !important;
    color: #666666 !important;
    border-color: #d0d0d0 !important;
}

#phone-status-modal .phone-cancel-btn:hover {
    background: #e8e8e8 !important;
    border-color: #999999 !important;
    color: #1a1a1a !important;
}