.elementor-283 .elementor-element.elementor-element-4583fba{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-4583fba */<style>
    body {
        font-family: 'Arial', sans-serif;
        background-color: #f0f2f5;
        color: #333;
        line-height: 1.6;
    }

    .container {
        max-width: 800px;
        margin: 40px auto;
        padding: 20px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .form-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        gap: 15px;
    }

    .custom-select, .form-control {
        border-radius: 5px;
        height: 45px;
        font-size: 16px;
        width: 100%;
        padding: 0 10px;
        box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
        border: 1px solid #ccc;
    }

    .btn-primary {
        background-color: #0a3161;
        border: none;
        color: white;
        height: 45px;
        font-weight: bold;
        padding: 0 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #082a50;
    }

    .table-responsive {
        margin-top: 20px;
    }

    .table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

    .table th, .table td {
        background-color: #f7f7f7;
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: center;
    }

    .table th {
        background-color: #0a3161;
        color: white;
        text-transform: uppercase;
    }

    h5 {
        font-weight: bold;
        margin-top: 20px;
        text-align: center;
        font-size: 20px;
        font-family: 'Arial Black', sans-serif; /* Променет фонт за Total */
    }

    #redirectButton {
        width: 100%;
        padding: 15px;
        background-color: #28a745;
        border: none;
        color: white;
        font-size: 18px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        text-align: center;
        animation: blink 1.5s infinite alternate; /* Ефект на трепкање */
    }

    @keyframes blink {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    #redirectButton:hover {
        background-color: #1c7430;
    }
</style>/* End custom CSS */