


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

.themsess-list-header {
    font-weight: bold;
    background-color: #f0f0f0;
    text-align: left;
}

.themsess-list-header, .themsess-list-row {
    display: grid;
    grid-template-columns: 40px 60px 200px;
    gap: 10px;
    padding: 5px;
    align-items: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Общ стил за лабораторната форма */
.themsess-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);
}

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

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

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

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

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

/* Стил за етикетите на полетата */
.themsess-label {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left; /* Подравняване на етикетите вляво */
    display: inline-block; /* Задължително за да работи правилно с text-align */
    width: 100%; /* За да се подравни правилно с полето */
}

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

/* Стил за бутоните */
.themsess-submit-row input, .themsess-reset-row input {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

/* Стил за бутона за запис */
.themsess-submit-row input {
    background-color: #4CAF50;
    color: white;
}

.themsess-submit-row input:hover {
    background-color: #45a049;
}

/* Стил за бутона за изчистване */
.themsess-reset-button {
    background-color: #007BFF; /* Син цвят */
    color: white;
}

.themsess-reset-button:hover {
    background-color: #0056b3; /* По-тъмен син при hover */
}
