body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    border: none;
}

.btn {
    border-radius: 8px;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

pre {
    font-size: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.navbar-brand {
    font-weight: 600;
}

.bg-info { background-color: #17a2b8 !important; }
.bg-warning { background-color: #ffc107 !important; }
.bg-success { background-color: #28a745 !important; }

/* Estilos para tabla de incidentes */
#incidents .table-responsive {
    overflow-x: auto;
}

#incidents table {
    min-width: 1200px;
}

#incidents td:nth-child(1) { /* ID */
    width: 200px;
    word-break: break-all;
    font-family: monospace;
}

#incidents td:nth-child(5) { /* Dirección */
    max-width: 300px;
    word-wrap: break-word;
}

#incidents small {
    font-size: 0.85em;
    line-height: 1.2;
}

#incidents .incident-link {
    color: inherit;
    text-decoration: underline;
}

#incidents .incident-link:hover {
    color: #0d6efd;
}
