﻿.mastertable {
    background-color: #1d1b7d;
    color: #fafbff;
    height: 51px;
}

.delete {
    position: relative;
    width: 23px;
    height: 24px;
}


.button-add {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 32px;
    position: relative;
    top: 10px;
    left: 15px;
    background-color: #51d497;
    border-radius: 6px;
    cursor: pointer;
}

.button-image {
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-bottom: -12px;
}

.button-label {
    width: fit-content;
    font-family: "CustomFont", Helvetica;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    text-align: center;
    letter-spacing: 0px;
    line-height: 24px;
    white-space: nowrap;
    font-style: normal;
}

.table-container {
    max-width: 1200px;    
    overflow-x: auto;
    border-radius: 8px;
    overflow: hidden;
}

/* Table styles */
.timbre-table {
    width: 100%;
    border-collapse: collapse;
}

    .timbre-table thead {
        background-color: #1d1b7d;
        color: #ffffff;
    }

    .timbre-table th,
    .timbre-table td {        
        text-align: left;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .timbre-table th {
        font-size: 16px;        
        letter-spacing: 0.5px;
    }

    .timbre-table td {
        font-size: 14px;
        vertical-align: middle;
    }

    .timbre-table tbody tr:hover {
        background-color: #f9f9f9;
    }

.cantidad-col {
    width: 100px; /* Ajusta el ancho a lo que desees */
}

.timbre-table input[type="number"] {
    width: 50px;
    background-color: #c2eff2;
    border-color: #3d6dde;
    box-shadow: 0 0 5px #1d1b7d;
    border-radius: 5px;
    outline: none;
    text-align: right;
}

    .timbre-table input[type="number"]:focus {
        border-color: #4ce061; 
    }