/* Общ стил за формата за оборудване */
.eq-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    height: fit-content;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Стилизиране на самата форма */
.eq-form {
    display: flex;
    flex-direction: column;
}

/* Заглавие на формата */
.eq-header h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.eq-header p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

/* Контейнер за полетата */
.eq-box {
    display: flex;
    flex-direction: column;
}

/* Разстояние между редовете в формата */
.eq-row {
    margin-bottom: 20px;
}

/* Стил за етикетите на полетата */
.eq-label {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left;
    display: inline-block;
    width: 100%;
}

/* Стил за входните полета */
.eq-row input, .eq-row textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Стилизиране на текстовото поле (textarea) */
.eq-row textarea {
    resize: vertical;
}

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

.eq-list-header {
    font-weight: bold;
    background-color: #f0f0f0;
}

.eq-list-header, .eq-list-row {
    display: grid;
    grid-template-columns: 40px 40px 500px 500px;
    padding: 5px 10px;
    align-items: center;
    text-align: left;
    min-width: 800px;
}

.eq-list-row > div,
.eq-list-header > div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.eq-list-row > div {
    font-size: 12px;
    text-align: left;
}

.eq-list-row > div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.eq-list-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.eq-form-container {
    margin-bottom: 80px;
}

.eq-list-row > div:nth-child(-n+3) {
    text-align: left;
}

.eq-actions {
    display: flex;
    justify-content: flex-end;
    gap: 3px;
}



.eq4-user-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
}

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

.eq4-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;
}

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

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

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

.eq4-name {
    font-weight: bold;
}

.eq4-collapsible-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.eq4-collapsible-content.wl2-hidden {
    max-height: 0;
}

.eq4-collapsible-content.wl2-visible {
    max-height: 1000px;
}

.eq4-count-highlight-box1 {
    text-align: left;
    font-size: 12px;
    color: #333;
}

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

.eq4-list-row2 {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
    padding: 5px;
    align-items: center;
    text-align: left;
}

.eq4-list-row2 > div {
    font-size: 12px;
}

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

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

.eq4-list-header, .eq4-list-row {
    display: grid;
    grid-template-columns: 40px 50px 1.5fr 1fr;
    padding: 5px 10px;
    align-items: center;
    text-align: left;
    min-width: 800px;
}

.eq4-list-header {
    font-weight: bold;
    background-color: #f0f0f0;
}

.eq4-list-header > div,
.eq4-list-row > div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}








