/* Стили для окна профиля */
#profileModal .modal-content {
    border-radius: 20px;
    padding: 10px;
    width: 359px !important;
    gap: 10px !important;
    background: #f8f4ee;
}

#profileModal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    right: -528px;
}

#profileModal.modal.fade .modal-dialog {
    transform: translateY(-150px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#profileModal.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

#profileModal .admin-button {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    border-radius: 16px;
    background: #ecdcc5;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 20px;
    color: #323131;
    transition: background 0.3s ease;
}

#profileModal .admin-button:hover {
    background: #C57D67;
}

#profileModal .profile-bio {
    padding: 5px;
    width: 100%;
}

#profileModal img {
    width: 63px;
    height: 63px;
    object-fit: cover;
    border-radius: 12px;
}

#profileModal h3 {
    font-weight: 600;
    font-size: 20px;
    color: #323131;
}

/* Адаптив под мобильные устройства */
@media (max-width: 1399px) {
    #profileModal .modal-dialog {
        right: unset;
    }
}