.somo-page .somo-center {
    width: 100%;
}

.somo-wrap {
    background: #fff;
    border: 1px solid #dedede;
    margin: 0 0 16px;
}

.somo-title {
    margin: 0;
    padding: 10px 12px;
    background: #f45a5a;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 5px 5px 0 0
}

.somo-title-ico {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
}

.somo-title-ico svg {
    width: 100%;
    height: 100%;
    display: block;
}

.somo-filter {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #e5e5e5;
    align-items: end;
}

.somo-field label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.somo-field input {
    width: 100%;
    height: 40px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 15px;
    color: #222;
}

.somo-field input:focus {
    outline: none;
    border-color: #3c6df0;
    box-shadow: 0 0 0 2px rgba(60, 109, 240, 0.16);
}

.somo-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.somo-btn {
    height: 40px;
    border: 0;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.somo-btn-search {
    background: #e3262f;
    color: #fff;
}

.somo-btn-reset {
    background: #f0ad00;
    color: #fff;
}

.somo-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px;
}

.somo-results-meta {
    color: #666;
    font-size: 14px;
}

.somo-pagination {
    display: flex;
    align-items: center;
    gap: 4px;
}

.somo-page-btn {
    min-width: 34px;
    height: 34px;
    border: 1px solid #ddd;
    background: #fff;
    color: #4a4a4a;
    border-radius: 0;
    padding: 0 8px;
    font-weight: 600;
    cursor: pointer;
}

.somo-page-btn.is-active {
    background: #ef3b3b;
    border-color: #ef3b3b;
    color: #fff;
}

.somo-page-btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.somo-page-dots {
    color: #777;
    padding: 0 4px;
}

.somo-table-wrap {
    padding: 0 3px 3px;
}

.somo-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d9d9d9;
}

.somo-table th,
.somo-table td {
    border: 1px solid #e1e1e1;
    padding: 8px 10px;
    text-align: center;
    font-size: 17px;
    line-height: 1.2;
}

.somo-table th {
    background: #efefef;
    color: #111;
    font-weight: 700;
}

.somo-table td:nth-child(1) {
    width: 80px;
}

.somo-table td:nth-child(2) {
    text-align: center;
}

.somo-table td:nth-child(3) {
    text-align: center;
    font-weight: 500;
}

.somo-empty {
    text-align: center !important;
    color: #777;
    padding: 18px !important;
}

.somo-wrap.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

@media (max-width: 991px) {
    .somo-filter {
        grid-template-columns: 1fr;
    }

    .somo-actions {
        justify-content: flex-start;
    }

    .somo-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .somo-table-wrap {
        overflow-x: auto;
    }

    .somo-table {
        min-width: 350px;
    }
}
