

.loading {
    text-align: center;
    padding: 10px;
    font-size: 20px;
}

.field-validation-error {
    color: #e01d1d;
}

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

        table caption {
            font-size: 1.3em;
        }

        table thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }

        table tr {
            border-bottom: 3px solid #ddd;
            display: block;
            margin-bottom: .625em;
        }

        table td {
            border-bottom: 1px solid #ddd;
            display: block;
            font-size: .8em;
            text-align: right;
        }

            table td::before {
                /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
                content: attr(data-label);
                float: left;
                font-weight: bold;
                text-transform: uppercase;
            }

            table td:last-child {
                border-bottom: 0;
            }

    .actions-table {
        margin-left: 195px;
    }

    .addAmount {
        margin-left: 190px;
    }

    .addServiceAmount {
        margin-left: 190px;
    }
}


.choices__input--cloned {
    border: 1px solid #ccc;
    border-radius: 5px;
    background: rgb(230,228,228);
    background: linear-gradient(90deg, rgba(230,228,228,1) 0%, rgba(220,220,227,1) 100%, rgba(250,250,255,1) 100%);
}

.card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.produto-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader-container {
    text-align: center;
    color: #FFF;
    font-family: Verdana, Arial, sans-serif;
}

.loader-animation {
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

.loader-message {
    margin-top: 10px;
    font-size: 14px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}