.niches-container {
    max-height: 300px;
    overflow-y: auto;
    padding: 5px;
}

.niche-checkbox:hover {
    background: #f1f3f5 !important;
    border-color: #dee2e6 !important;
}

.niche-checkbox input[type="checkbox"] {
    accent-color: #1890ff;
}

.notifications-container {
    margin-top: 20px;
}

.notification-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.notification-item label {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.notification-item label:hover {
    background-color: #f1f3f5;
}

.notification-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4834b4;
}

@media (max-width: 743px) {
    .popup-account-form__content-form {
        padding: 100px 25px;
    }
}

.profile-form {
    max-width: 500px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.profile-form .row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.profile-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
    font-size: 15px;
}

.profile-form .input {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.profile-form .input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    outline: none;
}

.email-row {
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 25px;
}

.email-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 5px;
}

.email-container b {
    font-weight: 500;
    font-size: 16px;
    color: #1a202c;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #48bb78;
    border-radius: 50%;
    padding: 4px;
    cursor: pointer;
    transition: transform 0.3s;
}

.verified-badge svg {
    width: 14px;
    height: 14px;
    color: white;
}

.verified-badge:hover {
    transform: scale(1.1);
    background: #38a169;
}

.view-all-btn {
    background: #3182ce;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 200px;
}

.view-all-btn:hover {
    background: #2b6cb0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.password-change-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.password-change-header a {
    font-size: 14px;
    color: #4834b4;
    text-decoration: none;
}

.password-change-header a:hover {
    text-decoration: underline;
}

.password-current-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.password-current-header a {
    font-size: 14px;
    color: #4834b4;
    text-decoration: none;
}

.password-current-header a:hover {
    text-decoration: underline;
}

.password-fields {
    margin-top: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    background: #fefefe;
}
.password-fields label{
    padding: 5px 0;
    display: block;
}
