/* =============================================
   ESTILOS DEL SISTEMA DE LAPTOPS
   ============================================= */

body {
    background-color: #f5f5f5;
    min-height: 100vh;
}

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

/* Cards Dashboard */
.card-dashboard {
    transition: transform 0.2s;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card-dashboard:hover {
    transform: translateY(-5px);
}

.card-dashboard .card-body {
    padding: 1.5rem;
}

.card-dashboard i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Tablas */
.table-custom {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table-custom thead {
    background: #0d6efd;
    color: white;
}

/* Badges */
.badge-oficina { background-color: #0d6efd; }
.badge-campo { background-color: #198754; }
.badge-disponible { background-color: #198754; }
.badge-asignado { background-color: #ffc107; color: #000; }
.badge-mantenimiento { background-color: #dc3545; }

/* Formularios */
.form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Imágenes */
.img-preview {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #dee2e6;
}

.img-thumbnail-small {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Footer */
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Botones de acción */
.btn-action {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .card-dashboard {
        margin-bottom: 1rem;
    }
}
