/* 
   Estilos específicos para la gestión administrativa de mascotas
   Módulo: Administrador / Dashboard Mascotas
*/

.admin-header {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(26, 82, 118, 0.2);
    margin-bottom: 40px;
}

.search-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: none;
    margin-bottom: 30px;
}

.pet-table-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: none;
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    color: #1a5276;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 20px;
}

.table tbody td {
    padding: 20px;
    vertical-align: middle;
    border-top: 1px solid #f8f9fa;
    color: #444;
}

.table tbody tr:hover {
    background-color: #fcfcfc;
    transform: scale(1.002);
    transition: all 0.2s;
}

.pet-thumb {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #1a5276 !important;
    border-color: #1a5276 !important;
}

.btn-primary:hover {
    background-color: #14425e !important;
    border-color: #14425e !important;
}

.btn-outline-primary {
    border-color: #1a5276 !important;
    color: #1a5276 !important;
}

.btn-outline-primary:hover {
    background-color: #1a5276 !important;
    color: white !important;
}

.btn-pill {
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add {
    background-color: #f39c12;
    border: none;
    color: white;
}
.btn-add:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    color: white;
}

.btn-mail {
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    backdrop-filter: blur(5px);
}
.btn-mail:hover {
    background-color: white;
    color: #1a5276;
}

.form-control-custom {
    border-radius: 50px;
    padding: 10px 25px;
    border: 1px solid #eee;
    background: #fdfdfd;
}

/* Utilidades de Tabla de Gestión */
.col-id { width: 80px; }
.col-thumb { width: 100px; }
.col-actions { width: 180px; }

.text-ellipsis-admin {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.toast-admin-layer {
    z-index: 1100;
}
