.jwt-token__modal form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jwt-token__modal form .cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 12px;
    align-items: center;
}

.jwt-token__modal form .full-width .btn_main {
    width: 100%;
}

.jwt-token__modal form .full-width .btn_main.alert {
    background-color: #e74c3c !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.jwt-token__modal form .full-width .btn_main.alert:hover {
    background-color: #c0392b !important;
    color: #fff !important;    
}

.jwt-token__modal form .required {
    color: red;
}

.jwt-token__modal .preloader .modal-blocker {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.jwt-token__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.jwt-token__table {
    min-width: 500px;
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.jwt-token__table tr td {
    text-align: center;
    border: 1px solid #ddd;
    padding: 12px;
}

.jwt-token__table tr th {
    text-align: center;
    border: 1px solid #ddd;
    padding: 12px;
    background-color: #f8f9fa;
    font-weight: 600;
}

.jwt-token__textarea {
    display: none;
    width: 100%;
    resize: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.jwt-token__textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.jwt-token__error-message {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid #e74c3c;
    border-radius: 8px;
    padding: 12px;
    color: #e74c3c;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.jwt-token__error-message.active {
    display: flex;
}