.stm-wrapper {
    direction: rtl;
    font-family: Tahoma, Arial, sans-serif;
}

.stm-tabs-interface {
    margin-top: 20px;
}

.stm-tabs-interface.is-hidden {
    display: none;
}

.stm-tab-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.stm-tab-button {
    border: 1px solid #ccc;
    background: #f7f7f7;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 6px;
}

.stm-tab-button.active {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.stm-tab-content {
    display: none;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.stm-tab-content.active {
    display: block;
}

.stm-login-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.stm-login-box {
    width: 100%;
    max-width: 360px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stm-login-box h3 {
    margin-top: 0;
}

.stm-login-box input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#stm-login-btn {
    width: 100%;
    padding: 10px;
    background: #2271b1;
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}

.stm-login-message {
    margin-top: 10px;
    font-size: 14px;
}

.stm-admin-wrap .stm-tab-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.stm-admin-wrap .stm-tab-row input {
    min-width: 280px;
    padding: 8px;
}
