:root {
    /* LISA Branding - Light Theme */
    --primary: #0077b6;
    --primary-hover: #005f8c;
    --accent: #00b4d8;
    --accent-light: #caf0f8;
    --success: #2a9d8f;
    --danger: #d62828;
    --warning: #f4a261;
    --bg-page: #f5f8fa;
    --bg-card: #ffffff;
    --bg-sidebar: #ffffff;
    --bg-header: #ffffff;
    --border: #d0dce5;
    --border-light: #e8eff4;
    --text: #1a3a4a;
    --text-muted: #5a7a8a;
    --text-light: #ffffff;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0, 119, 182, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 119, 182, 0.12);
}

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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-page);
    color: var(--text);
    min-height: 100vh;
}

.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Header */
.header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    height: 32px;
    width: auto;
}

.header-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: 320px;
    min-width: 240px;
    max-width: 500px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    flex-shrink: 0;
}

.sidebar-resize-handle {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    cursor: ew-resize;
    background: transparent;
    transition: background 0.2s;
    z-index: 10;
}

.sidebar-resize-handle:hover,
.sidebar-resize-handle.resizing {
    background: var(--primary);
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow);
}

.card h2 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Elements */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: var(--text-muted);
}

.form-group input[type="text"] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.file-input-wrapper {
    position: relative;
    background: var(--bg-page);
    border: 2px dashed var(--border);
    border-radius: 6px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.file-input-wrapper:hover {
    border-color: var(--primary);
    background: var(--accent-light);
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

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

.file-name.has-file {
    color: var(--success);
}

.helper-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Preview Info */
.preview-info {
    background: var(--bg-page);
    border-radius: 6px;
    padding: 0.625rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-light);
}

.preview-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    padding: 0.25rem 0;
}

.preview-stat .label {
    color: var(--text-muted);
}

.preview-stat .value {
    color: var(--text);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    width: 100%;
}

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

.btn-primary:hover:not(:disabled) {
    background: var(--primary-hover);
    box-shadow: 0 2px 8px rgba(0, 119, 182, 0.3);
}

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

.btn-small {
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
    width: auto;
}

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

.btn-danger:hover {
    background: #b91c1c;
}

.btn-outline {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--accent-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* Upload Result */
.upload-result {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
}

.upload-result.success {
    background: rgba(42, 157, 143, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.upload-result.error {
    background: rgba(214, 40, 40, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.upload-result.warning {
    background: rgba(244, 162, 97, 0.1);
    border: 1px solid var(--warning);
    color: #9a6700;
}

/* Upload Progress */
.upload-progress {
    margin-top: 0.75rem;
    background: var(--bg-page);
    border-radius: 6px;
    padding: 0.75rem;
    border: 1px solid var(--border);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}

#progressTitle {
    color: var(--text);
    font-weight: 500;
}

#progressCount {
    color: var(--text-muted);
}

.progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.625rem;
}

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

.progress-log {
    max-height: 120px;
    overflow-y: auto;
    font-size: 0.6875rem;
    font-family: 'Consolas', 'Monaco', monospace;
}

.log-entry {
    padding: 0.1875rem 0;
    line-height: 1.4;
    border-bottom: 1px solid var(--border-light);
}

.log-entry:last-child {
    border-bottom: none;
}

.log-info {
    color: var(--text-muted);
}

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

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

/* Package List */
.package-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-height: 300px;
    overflow-y: auto;
}

.package-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-page);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.625rem 0.75rem;
    transition: border-color 0.2s, background 0.2s;
}

.package-item:hover {
    border-color: var(--primary);
    background: var(--accent-light);
}

.package-item.active {
    border-color: var(--primary);
    background: var(--accent-light);
}

.package-info {
    flex: 1;
    min-width: 0;
}

.package-name {
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.package-stats {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.package-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.type-badge {
    font-size: 0.65rem;
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    white-space: nowrap;
}

.package-name {
    cursor: pointer;
}

.package-name:hover {
    text-decoration: underline;
    text-decoration-style: dotted;
}

.package-actions {
    display: flex;
    gap: 0.5rem;
}

.package-toggle {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

.package-toggle.visible {
    background: var(--primary);
    border-color: var(--primary);
}

.loading {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

.empty-state {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

/* Map */
.map-container {
    flex: 1;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

.map-legend {
    position: absolute;
    bottom: 1.5rem;
    right: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem;
    z-index: 1000;
    min-width: 160px;
    box-shadow: var(--shadow);
}

.map-legend h4 {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    padding: 0.25rem 0;
    cursor: pointer;
}

.legend-color {
    width: 16px;
    height: 4px;
    border-radius: 2px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-item {
    animation: fadeIn 0.3s ease;
}

/* Main Panel */
.main-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 0;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 1000;
    background: var(--bg-card);
    border-radius: 6px;
    padding: 3px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.view-btn {
    padding: 0.375rem 0.75rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8125rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.view-btn:hover {
    color: var(--text);
    background: var(--bg-page);
}

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

/* Table View */
.table-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    background: var(--bg-page);
}

.table-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.625rem;
    background: var(--bg-card);
    border-radius: 6px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.table-controls select {
    padding: 0.375rem 0.75rem;
    background: var(--bg-page);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 4px;
    font-size: 0.8125rem;
    min-width: 200px;
}

.table-count {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.table-wrapper {
    flex: 1;
    overflow: auto;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.75rem;
}

.data-table th,
.data-table td {
    padding: 0.5rem 0.625rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    white-space: nowrap;
}

.data-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1;
}

.data-table tbody tr:hover {
    background: var(--accent-light);
}

.data-table tbody tr:nth-child(even) {
    background: var(--bg-page);
}

.data-table td {
    color: var(--text);
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}

/* Boundary Section */
.boundary-section .boundary-controls {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.boundary-section .boundary-controls select {
    flex: 1;
    padding: 0.5rem;
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-size: 0.75rem;
}

.boundary-section .boundary-controls .btn {
    flex: 1;
}

.boundary-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-height: 300px;
    overflow-y: auto;
}

/* Package Group Hierarchy */
.package-group {
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.package-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font-size: 0.8125rem;
    transition: background 0.2s;
}

.package-header:hover {
    background: var(--primary-hover);
}

.package-expand {
    font-size: 0.625rem;
    width: 12px;
}

.project-count {
    margin-left: auto;
    opacity: 0.8;
    font-size: 0.75rem;
}

.package-projects {
    background: var(--bg-page);
}

.project-item {
    padding-left: 1.5rem !important;
    border-bottom: 1px solid var(--border-light);
}

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

.boundary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--bg-page);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 0.75rem;
}

.boundary-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.boundary-color {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

.boundary-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.boundary-meta {
    flex-shrink: 0;
}

.boundary-status {
    font-size: 0.6875rem;
    font-weight: 600;
}

.boundary-actions {
    flex-shrink: 0;
}

.no-data,
.error {
    padding: 0.75rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* Status Dashboard Colors */
.stat-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    margin: 0 0.5rem;
}

.stat-planning .stat-value {
    color: #f4a261;
}

.stat-active .stat-value {
    color: #2a9d8f;
}

.stat-complete .stat-value {
    color: #0077b6;
}

/* Boundary Actions Bar */
.boundary-actions-bar {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-light);
}

.boundary-actions-bar .btn-small {
    padding: 0.25rem 0.5rem;
    font-size: 0.6875rem;
}

.bulk-select {
    flex: 1;
    padding: 0.25rem 0.5rem;
    font-size: 0.6875rem;
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--primary);
    animation: slideIn 0.3s ease;
    pointer-events: auto;
    max-width: 320px;
}

.toast.success {
    border-left-color: #2a9d8f;
}

.toast.error {
    border-left-color: #e63946;
}

.toast.warning {
    border-left-color: #f4a261;
}

.toast-message {
    flex: 1;
    font-size: 0.8125rem;
    color: var(--text);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.hiding {
    animation: slideOut 0.3s ease forwards;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal {
    background: var(--bg-card);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 400px;
    max-width: 500px;
    animation: scaleIn 0.2s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

.modal-header h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

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

.modal-body {
    padding: 1.25rem;
}

.modal-body .form-group {
    margin-bottom: 1rem;
}

.modal-body label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text);
    font-weight: 500;
}

.modal-body input,
.modal-body select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--text);
}

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

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

.form-row .form-group {
    flex: 1;
}

.area-display {
    display: block;
    padding: 0.5rem 0.75rem;
    background: var(--bg-page);
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--bg-page);
    border-radius: 0 0 8px 8px;
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
}

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

.btn-danger {
    background: #e63946;
    border: none;
    color: white;
}

.btn-danger:hover {
    background: #d62839;
}

/* Section Header with Toggle */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    border-radius: 20px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked+.toggle-slider {
    background-color: var(--primary);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(16px);
}

/* Package visibility controls */
.package-visibility-controls {
    display: flex;
    gap: 0.5rem;
}

.hint-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0 0 0.5rem 0;
}

/* Services Section */
.services-section .services-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.service-item {
    background: var(--bg-page);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
}

.service-name {
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.service-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.375rem 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.service-url:hover {
    border-color: var(--primary);
    background: var(--accent-light);
}

.url-text {
    font-size: 0.6875rem;
    font-family: 'Consolas', 'Monaco', monospace;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.copy-icon {
    font-size: 0.75rem;
    opacity: 0.6;
}

.service-url:hover .copy-icon {
    opacity: 1;
}

.service-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-indicator {
    font-size: 0.625rem;
}

.status-indicator.online {
    color: var(--success);
}

.status-indicator.offline {
    color: var(--danger);
}