

html.dark-theme .toggle-slider {
    background-color: var(--primary-color);
}

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

.toggle-text {
    font-weight: 500;
    color: #374151;
}

html.dark-theme .toggle-text {
    color: var(--btn-secundary-color);
}



html.dark-theme .country-tag {
    background: #1a1a1a;
    border-color: #333;
    color: #f3f4f6;
}

.country-tag-code {
    font-weight: 600;
    color: #2563eb;
}

html.dark-theme .country-tag-code {
    color: var(--primary-color);
}

.country-tag-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: color 0.2s;
}

.country-tag-remove:hover {
    color: #dc2626;
}

.countries-list-empty {
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #9ca3af;
    font-size: 0.9rem;
}

html.dark-theme .countries-list-empty {
    color: #6b7280;
}

.locations-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

html.dark-theme .location-item {
    background: #1a1a1a;
    border-color: #333;
}

.location-item.suspicious {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

html.dark-theme .location-item.suspicious {
    background: #2a1a1a;
}

.location-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    border-radius: 50%;
    color: #6b7280;
    font-size: 1.2rem;
}

html.dark-theme .location-icon {
    background: #333;
    color: #9ca3af;
}

.location-icon.suspicious {
    background: #fee2e2;
    color: #ef4444;
}

html.dark-theme .location-icon.suspicious {
    background: #3a1a1a;
    color: #f87171;
}

.location-content {
    flex: 1;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.location-place {
    font-weight: 600;
    color: #374151;
}

html.dark-theme .location-place {
    color: #f3f4f6;
}

.location-time {
    font-size: 0.85rem;
    color: #9ca3af;
}

.location-details {
    font-size: 0.9rem;
    color: #6b7280;
}

html.dark-theme .location-details {
    color: #9ca3af;
}

.location-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
}

.location-badge.badge-high {
    background: #fee2e2;
    color: #ef4444;
}

.location-badge.badge-medium {
    background: #fef3c7;
    color: #f59e0b;
}

.location-badge.badge-low {
    background: #dbeafe;
    color: #2563eb;
}

html.dark-theme .location-badge.badge-high {
    background: #3a1a1a;
    color: #f87171;
}

html.dark-theme .location-badge.badge-medium {
    background: #2a2410;
    color: #fbbf24;
}

html.dark-theme .location-badge.badge-low {
    background: #1a2a3a;
    color: #60a5fa;
}

.locations-container-empty {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

html.dark-theme .locations-container-empty {
    color: #6b7280;
}

.locations-container-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

.alerts-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.alert-item {
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    border-left: 4px solid #d1d5db;
}

html.dark-theme .alert-item {
    background: #1a1a1a;
    border-color: #333;
}

.alert-item.alert-critical {
    border-left-color: #ef4444;
}

.alert-item.alert-high {
    border-left-color: #f59e0b;
}

.alert-item.alert-medium {
    border-left-color: #3b82f6;
}

.alert-item.alert-low {
    border-left-color: #10b981;
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.alert-title {
    font-weight: 600;
    color: #374151;
    margin: 0;
}

html.dark-theme .alert-title {
    color: #f3f4f6;
}

.alert-date {
    font-size: 0.85rem;
    color: #9ca3af;
}

.alert-message {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 10px 0;
    line-height: 1.5;
}

html.dark-theme .alert-message {
    color: #9ca3af;
}

.alert-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

.alert-status.status-sent {
    background: #dbeafe;
    color: #2563eb;
}

.alert-status.status-confirmed {
    background: #d1fae5;
    color: #10b981;
}

.alert-status.status-denied {
    background: #fee2e2;
    color: #ef4444;
}

html.dark-theme .alert-status.status-sent {
    background: #1a2a3a;
    color: #60a5fa;
}

html.dark-theme .alert-status.status-confirmed {
    background: #1a2a1a;
    color: #34d399;
}

html.dark-theme .alert-status.status-denied {
    background: #3a1a1a;
    color: #f87171;
}

.alerts-container-empty {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

html.dark-theme .alerts-container-empty {
    color: #6b7280;
}

.alerts-container-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
}
