/* filename: assets/css/profile.css */

.profile-layout {
    width: 95%;
    max-width: 1100px;
    margin: 24px auto 40px auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.profile-menu {
    width: 250px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    padding: 16px 12px;
}

.profile-menu-title {
    margin: 0 8px 12px 8px;
    font-size: 16px;
    font-weight: 700;
    color: #222222;
}

.profile-menu-list {
    display: flex;
    flex-direction: column;
}

.profile-menu-item {
    display: block;
    padding: 11px 12px;
    margin-bottom: 4px;
    border-radius: 8px;
    text-decoration: none;
    color: #333333;
    background: transparent;
}

.profile-menu-item:hover {
    background: #f4f4f4;
}

.profile-menu-item-active {
    background: #eef6f4;
    color: #0f766e;
    font-weight: 700;
}

.profile-menu-item-exit {
    color: #b42318;
}

.profile-content {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.profile-page-title {
    margin: 0 0 18px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

.profile-message {
    margin: 0 0 16px 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.profile-message-ok {
    background: #eef8f1;
    color: #166534;
}

.profile-message-error {
    background: #fef2f2;
    color: #b42318;
}

.profile-form {
    display: block;
}

.profile-field {
    margin-bottom: 14px;
}

.profile-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333333;
}

.profile-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
}

.profile-input[readonly] {
    background: #f7f7f7;
    color: #6b7280;
}

.profile-submit {
    margin-top: 8px;
    padding: 10px 18px;
    border: 0;
    border-radius: 8px;
    background: #0f766e;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.profile-submit:hover {
    background: #0b5f59;
}

@media (max-width: 768px) {
    .profile-layout {
        display: block;
    }

    .profile-menu {
        width: auto;
        margin-bottom: 16px;
    }
}
