/**
 * ✅ CEAPP: Estilos da página MinhasReservas.aspx
 * 
 * Funcionalidade: Estilos específicos da página de minhas reservas
 * - Grid de reservas responsivo
 * - Badges de status
 * - Botões de ação
 * - Mensagem quando não há reservas
 * 
 * Integração CEAPP:
 * - Estilos separados do HTML para melhor organização
 * - Facilita manutenção e reutilização
 */

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.reservas-grid-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 30px;
    overflow-x: auto;
}

.table-reservas {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.table-reservas thead {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5a3d 100%);
    color: white;
}

.table-reservas thead th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.table-reservas tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.table-reservas tbody tr:hover {
    background-color: #f8f9fa;
}

.table-reservas tbody td {
    padding: 15px;
    vertical-align: middle;
    font-size: 14px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    white-space: nowrap;
}

.status-pendente { background-color: #ffc107; color: #000; }
.status-confirmado { background-color: #17a2b8; color: #fff; }
.status-pronto { background-color: #28a745; color: #fff; }
.status-entregue { background-color: #6c757d; color: #fff; }
.status-cancelado { background-color: #dc3545; color: #fff; }

.btn-detalhes {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-acoes {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.btn-acoes .btn {
    font-size: 12px;
    padding: 5px 10px;
}

@media (max-width: 768px) {
    .reservas-grid-container {
        padding: 15px;
    }
    .table-reservas {
        font-size: 12px;
    }
    .table-reservas thead th,
    .table-reservas tbody td {
        padding: 10px 8px;
    }
    .btn-detalhes,
    .btn-acoes .btn {
        font-size: 11px;
        padding: 4px 8px;
    }
}

.sem-reservas {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.sem-reservas i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #dee2e6;
}

