/* 
   Estilos específicos para el panel de Mis Solicitudes
   Módulo: Adopción ORO / Gestión de Reservas
*/

.requests-hero {
    padding: 50px 0 30px;
    background: radial-gradient(at 0% 0%, rgba(26, 82, 118, 0.03) 0%, transparent 50%),
                radial-gradient(at 100% 100%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
}

.category-oro-badge {
    background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.booking-card {
    background: #fff;
    border-radius: 25px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 82, 118, 0.1);
}

.booking-img-container {
    position: relative;
    padding: 15px;
}

.booking-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(243, 156, 18, 0.1);
}

.booking-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(243, 156, 18, 0.1);
    color: #d68910;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.btn-view-pet {
    background: transparent;
    color: #1a5276;
    border: 1.5px solid #1a5276;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-view-pet:hover {
    background: #1a5276;
    color: white;
}

.empty-state {
    padding: 80px 20px;
    background: #fff;
    border-radius: 30px;
    border: 2px dashed rgba(26, 82, 118, 0.1);
}

.btn-back-main {
    color: #1a5276;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    background: rgba(26, 82, 118, 0.05);
    transition: all 0.2s;
}

.btn-back-main:hover {
    background: rgba(26, 82, 118, 0.1);
    transform: translateX(-5px);
}

.btn-decline-modern {
    background: transparent;
    color: #e74c3c;
    border: 1.5px solid #e74c3c;
    border-radius: 50px;
    padding: 8px 15px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-decline-modern:hover {
    background: #e74c3c;
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

/* Utilidades Finales - Mis Solicitudes */
.requests-title { color: #1a5276; letter-spacing: -2px; }
.empty-state-lead { max-width: 500px; }
.admin-pet-thumb { height: 100px; }
.text-score { font-size: 0.65rem; }
