/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 13 2025 | 13:45:29 */
/* ===== CARD DA ÚLTIMA SOLICITAÇÃO ===== */
.ultima-solicitacao-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e8ecef;
    border-left: 4px solid #3b82f6;
    margin: 20px 0;
    transition: all 0.3s ease;
    max-width: 400px;
}

.ultima-solicitacao-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.solicitacao-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px 24px;
}

.solicitacao-card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.solicitacao-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solicitacao-status.pendente { 
    background: #fef3c7; 
    color: #d97706;
    border: 1px solid #fcd34d;
}

.solicitacao-status.andamento { 
    background: #dbeafe; 
    color: #1d4ed8;
    border: 1px solid #93c5fd;
}

.solicitacao-status.concluido { 
    background: #dcfce7; 
    color: #166534;
    border: 1px solid #86efac;
}

.solicitacao-card-content {
    padding: 0 24px 16px 24px;
}

.solicitacao-info {
    /* Sem margem inferior pois removemos a descrição */
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.info-value {
    font-size: 0.85rem;
    color: #1e293b;
    font-weight: 600;
    text-align: right;
}

.solicitacao-vazia {
    text-align: center;
    padding: 30px 20px;
    color: #94a3b8;
}

.vazia-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.6;
}

.solicitacao-vazia p {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
}

.solicitacao-vazia small {
    font-size: 0.8rem;
}

.solicitacao-card-actions {
    padding: 20px 24px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.btn-gerenciar {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-gerenciar:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Responsivo */
@media (max-width: 768px) {
    .ultima-solicitacao-card {
        max-width: 100%;
    }
    
    .solicitacao-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .solicitacao-card-header h3 {
        font-size: 1rem;
    }
}