

    .o3m3-count-warning {
        background-color: #ffecec;
        display: grid;
        grid-template-columns: auto 1fr;
        row-gap: 5px;
        column-gap: 5px;
        padding: 5px;
        border-radius: 6px;
        width: 100%;
        margin-bottom: 10px;
        }

    /* Статус 0 – липсва отчет */
    .o3m3-status-0 {
        background-color: #ffe5ec;
        color: #990f3d;
        border: 1px solid #f5c2d7;
    }

    /* Статус 1 – отчета е създаден */
    .o3m3-status-1 {
        background-color: #dadada;
        color: #003366;
        border: 1px solid #99cfff;
    }

    /* Статус 2 – отчета е изпратен */
    .o3m3-status-2 {
        background-color: #90cde3;
        color: #265f46;
        border: 1px solid #b5dfc5;
    }

    /* Статус 3 – отчета е одобрен */
    .o3m3-status-3 {
        background-color: #6cb381;
        color: #4b3c74;
        border: 1px solid #c8bce4;
    }

    .o3m3-user-header {
        display: flex;
        align-items: center;
        cursor: pointer;
        gap: 10px;
    }

    .o3m3-eye-button {
        width: 40px;
        height: 40px;
        background-color: #007baf;
        color: white;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .o3m3-eye-button i {
        margin: 0;
        padding: 0;
        display: block; /* или inline-flex */
        width: 100%;
        text-align: center;
    }

    .o3m3-eye-button:hover {
        background-color: #005f8a;
    }

    .o3m3-count-highlight-box3 {
        text-align: left;
        font-size: 12px;
        color: #1a73e8;
        font-weight: 600;
    }
    
    .o3m3-name{
        font-weight: bold;
    }

    .o3m3-row {
        display: flex;
        align-items: flex-end;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 12px;
        margin-bottom: 40px;
        text-align: left;
    }

    .o3m3-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }

    .o3m3-label {
        font-size: 14px;
        color: #333;
        font-weight: bold;
        margin-bottom: 8px;
        text-align: left;
        display: inline-block;
        width: 100%;
    }

    .o3m3-dropdown-container {
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .o3m3-dropdown {
        width: 100%;
        padding-left: 5px;
        box-sizing: border-box;
        height: 44px;
        border-radius: 4px;
        border: 1px solid #ccc;
        font-size: 14px;
    }

    .o3m3-dropdown-button {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 100%;
        background-color: #007baf;
        color: white;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        font-size: 16px;
        z-index: 2;
    }

    .o3m3-field {
        text-align: left;
        padding-left: 5px;
    }

    .o3m3-show-button {
        background-color: #28a745;
        color: #fff;
        border: none;
        padding: 10px 14px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 4px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: inherit;
    }

    .o3m3-show-button:hover {
        background-color: #218838;
    }

    .o3m3-show-button:active {
        background-color: #1e7e34;
    }

    .o3m3-user-wrapper {
        display: flex;
        flex-direction: column;
    }

    .o3m3-list-container {
        background-color: #f1f1f1;
        border-radius: 8px;
        padding: 10px;
        margin-top: 10px;
        width: 100%;
        min-width: 800px;
        overflow-x: auto;
    }

    .o3m3-list-row > div {
        font-size: 12px;
    }

    .o3m3-list-row.even {
        background-color: #ffffff;
    }

    .o3m3-list-row.odd {
        background-color: #e9ecef;
    }

    .o3m3-eye-button-static {
        width: 40px;
        height: 40px;
        background-color: #007baf;
        color: white;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }


    .o3m3-accept-button-static {
        background-color: #28a745; /* зелен */
        border: 1px solid #1b5e20;
        color: white;
    }

    .o3m3-accept-button {
        background-color: #28a745; /* зелен */
        color: white;
    }

    .o3m3-reject-button {
        background-color: #dc3545; /* червен */
        color: white;
    }

    .o3m3-accept-button:disabled,
    .o3m3-accept-button[disabled]
    .o3m3-reject-button:disabled,
    .o3m3-reject-button[disabled] {
        background: #d9d9d9;
        border-color: #d9d9d9;
        color: #666;
        cursor: not-allowed;
        box-shadow: none;
        opacity: 1;
    }









