    body {
        font-family: Calibri, Arial, sans-serif;
        background: #f4f6f8;
        /* padding: 20px; */
    }
    .form-container {
        max-width: 800px;
        margin: auto;
        background: #fff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    
    header {
        background-color: #385623;
        color: #ffc000;
        padding: 10px;
        text-align: center;
        font-size: 20px;
    }

    .img-full {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    div {
        font-family: Calibri, Arial, sans-serif;
        font-size: 14px;
    }
    
    h2 {
        text-align: center;
        color: #2c5f2d;
    }
    label {
        font-weight: normal;
        font-size: 14px;
        display: block;
        margin-top: 12px;
    }
    input, select {
        width: 100%;
        padding: 8px;
        margin-top: 5px;
        font-size: 14px;
    }
    .counter {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 5px;
    }
    .counter button {
        width: 30px;
        height: 30px;
        font-size: 18px;
        cursor: pointer;
    }
    .inline {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    .inline div {
        flex: 1;
    }
    .checkbox-group, .radio-group {
        margin-top: 10px;
        border: 0px solid #cccccc;
        vertical-align: top;
        padding-left: 20px;
    }
    .total {
        font-size: 20px;
        font-weight: bold;
        text-align: left;
        margin-top: 20px;
    }
    .btn {
        background-color: #70ad47;    /* #c62828; */
        color: #ffffff;
        height: 50px;
        width: 200px;
        padding: 10px 20px;
        border: 1px solid #507e32;
        font-family: Calibri, Arial, sans-serif;
        font-size: 22px;
        font-weight: 900;
        cursor: pointer;
        border-radius: 10px;
    }

    .btn:hover {
        background-color: #70ad47;
        color: #ffc000;
    }
    .btnDisabled {
        background-color: #70ad47;    /* #c62828; */
        color: #ffffff;
        height: 50px;
        width: 200px;
        padding: 10px 20px;
        border: 1px solid #507e32;
        font-family: Calibri, Arial, sans-serif;
        font-size: 22px;
        font-weight: 900;
        cursor: default;
        border-radius: 10px;
    }

    .btnDisabled:hover {
        background-color: #70ad47;
        color: #ffffff;
    }
    button.confirmar {
        width: 100%;
        padding: 12px;
        font-size: 18px;
        background: #2c5f2d;
        color: white;
        border: none;
        border-radius: 5px;
        margin-top: 20px;
        cursor: pointer;
    }
    button.confirmar:hover {
        background: #1f4220;
    }