body { background: #f5f5f5; padding: 20px; }
.container { max-width: 1400px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.stat-card.registered { border-left: 4px solid #10b981; }
.stat-card.unregistered { border-left: 4px solid #ef4444; }
.stat-card.active { border-left: 4px solid #6366f1; }
.stat-card.inactive { border-left: 4px solid #f59e0b; }
.stat-value { font-size: 2rem; font-weight: 700; }
.stat-label { color: #666; font-size: 0.9rem; }

.nav-tabs {
    margin-bottom: 20px;
    border-bottom: none;
}
.nav-tabs .nav-link {
    border: none;
    color: #666;
    padding: 12px 24px;
    border-radius: 30px;
    margin-right: 10px;
    background: white;
}
.nav-tabs .nav-link:hover { background: #e0e7ff; }
.nav-tabs .nav-link.active {
    background: #6366f1;
    color: white;
}
.nav-tabs .nav-link .badge {
    margin-left: 8px;
    background: rgba(0,0,0,0.1);
}

.search-bar {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.vno-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}
.vno-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}
.vno-item:hover { background: #f8f9ff; }
.vno-item.selected {
    background: #e0e7ff;
    border-left: 3px solid #6366f1;
}
.vno-item:last-child { border-bottom: none; }

.vno-checkbox { margin-right: 15px; }
.vno-info { flex: 1; }
.vno-number {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 600;
}
.vno-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}
.vno-status { min-width: 80px; text-align: center; }
.vno-actions { display: flex; gap: 5px; }

.badge-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-active { background: #d1fae5; color: #065f46; }
.badge-inactive { background: #fee2e2; color: #991b1b; }
.badge-unregistered { background: #e5e7eb; color: #6b7280; }

.action-bar {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagination { margin-top: 20px; }

/* 모달 스타일 */
.modal-lg { max-width: 900px; }
.modal-xl { max-width: 1200px; }
.modal-content { border-radius: 16px; }
.modal-header { border-bottom: none; padding: 20px 25px; }
.modal-body { padding: 10px 25px 25px; }
.modal-footer { border-top: none; padding: 15px 25px; }

.nav-pills .nav-link {
    color: #666;
    border-radius: 20px;
    padding: 8px 16px;
}
.nav-pills .nav-link.active {
    background: #6366f1;
    color: white;
}
.tab-pane { padding-top: 20px; }

.form-label { font-weight: 500; color: #444; }
.required:after { content: " *"; color: #ef4444; }

.char-count { font-size: 0.75rem; color: #999; text-align: right; }
.ment-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

/* CDR 모달 스타일 */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f8f9fa;
}
#cdrContent .table {
    font-size: 0.85rem;
}
#cdrContent .badge {
    font-size: 0.7rem;
    padding: 3px 8px;
}