/* Estilo para la tabla */
.invoice-panel {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.table tbody tr:hover {
    background-color: #f1f1f1;
}

#invoiceTotal {
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
}

/* Estilo para los selects y cards */
.service-select, .service-select2, .service-select3 {
    width: 100%;
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    background-color: #f8f9fa;
}

.service-container {
    text-align: center;
}
.service-card {
    cursor: pointer;
    border: 2px solid #000;
    transition: all 0.3s ease;
    color: #026ffe;
   
}
.service-card:hover {
    border: 2px solid #007bff;
}
.service-card.selected {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}
.service-input {
    width: 100%;
    padding: 8px;
    text-align: center;
    font-size: 1.2rem;
    display: none;
}
.card-body h6{
    font-size: 0.9rem;
}



/* Responsividad */
@media (max-width: 768px) {
    .invoice-panel {
        padding: 10px;
    }

    .table th, .table td {
        padding: 8px;
    }

    .service-select, .service-select2, .service-select3 {
        font-size: 0.9rem;
    }

    .service-input {
        font-size: 0.9rem;
    }
}
