
/* Estilos dos alertas */
.alerta-customizado {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.alerta-customizado.alert-success {
    background-color: #28a745;
    color: white;
}

.alerta-customizado.alert-danger {
    background-color: #dc3545;
    color: white;
}

.alerta-customizado.alert-warning {
    background-color: #ffc107;
    color: white;
}

.alerta-customizado.alert-info {
    background-color: #17a2b8;
    color: white;
}

/* Estilos para os itens do carrinho */
.item-carrinho {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.item-info {
    flex: 1;
}

.item-info h6 {
    margin: 0;
}

.item-info p {
    margin: 5px 0;
    font-size: 14px;
}

.item-total {
    font-weight: bold;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}
