/* Adjust XP/Balance Modal Styles */

.adjust-field {
    margin-bottom: 1.5vw;
}

.adjust-field:last-of-type {
    margin-bottom: 0;
}

.adjust-label {
    display: flex;
    align-items: center;
    font-size: 0.9vw;
    font-weight: 600;
    color: #0f0f14;
    margin-bottom: 0.8vw;
}

.adjust-action-buttons {
    display: flex;
    gap: 0.8vw;
}

.adjust-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
    padding: 0.8vw 1.2vw;
    font-size: 0.85vw;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    background-color: rgba(255, 255, 255, 0.8);
    border: 0.1vw solid rgba(139, 92, 246, 0.2);
    border-radius: 0.5vw;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.adjust-action-btn:hover {
    background-color: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    color: rgba(0, 0, 0, 0.9);
}

.adjust-action-btn.active {
    background-color: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(139, 92, 246, 0.7);
    font-weight: 500;
}

.adjust-action-btn.active:hover {
    background-color: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.4);
}

.adjust-action-btn i {
    font-size: 0.85vw;
}

.adjust-amount-input,
.adjust-input {
    width: 100%;
    padding: 0.8vw 1vw;
    font-size: 0.85vw;
    font-weight: 500;
    color: #0f0f14;
    background-color: rgba(255, 255, 255, 0.8);
    border: 0.1vw solid rgba(139, 92, 246, 0.2);
    border-radius: 0.5vw;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.adjust-amount-input:focus,
.adjust-input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background-color: rgba(255, 255, 255, 0.95);
}

.adjust-message-input,
.adjust-textarea {
    width: 100%;
    padding: 0.8vw 1vw;
    font-size: 0.85vw;
    font-weight: 500;
    color: #0f0f14;
    background-color: rgba(255, 255, 255, 0.8);
    border: 0.1vw solid rgba(139, 92, 246, 0.2);
    border-radius: 0.5vw;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
    resize: none;
    min-height: 3vw;
    overflow-y: auto;
}

.adjust-message-input:focus,
.adjust-textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background-color: rgba(255, 255, 255, 0.95);
}

.adjust-char-count {
    margin-top: 0.5vw;
    text-align: right;
    font-size: 0.75vw;
    color: rgba(0, 0, 0, 0.5);
}

.adjust-char-count span {
    font-weight: 600;
}

/* Модальные окна для Adjust */
#adjust-xp-modal .modal,
#adjust-balance-modal .modal,
#update-status-modal .modal {
    max-width: 34.53vw;
    border-radius: 1.105vw !important;
    overflow: visible;
}

#adjust-xp-modal .modal-body,
#adjust-balance-modal .modal-body,
#update-status-modal .modal-body {
    padding: 1.5vw;
    overflow: visible;
}

#adjust-xp-modal .modal-actions,
#adjust-balance-modal .modal-actions,
#update-status-modal .modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.8vw;
    padding: 1.2vw 1.5vw;
    border-top: 0.08vw solid rgba(139, 92, 246, 0.1);
}

