.profile-settings-bg {
    background-color: #f5f5f5;
    min-height: 100vh;
    padding: 0px;
}

.profile-settings-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Main container - единый белый блок */
.profile-main-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

/* Main sections layout */
.profile-main-sections {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.profile-photo-section {
    flex: 1;
}

.profile-personal-section {
    flex: 3;
}

/* Secondary sections layout */
.profile-secondary-sections {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.profile-password-section {
    flex: 1;
}

.profile-password-section h2, .profile-info-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.profile-info-section {
    flex: 3;
}

.profile-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.profile-section h2,
.profile-photo-section h2,
.profile-personal-section h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
}

/* Profile photo section */
.avatar-container {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.avatar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.avatar-description {
    text-align: justify;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-top: 15px;
}

/* Personal data fields */
.personal-data-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-field-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.profile-field-label {
    font-size: 16px;
    color: #666;
    font-weight: normal;
    margin-bottom: 5px;
    width: 250px;
    flex-shrink: 0;
}

.profile-field-input {
    width: 250px;
    flex-shrink: 0;
}

.profile-field-input input {
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 12px 15px;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.profile-field-input input:focus {
    border-color: #228B22;
    background: #ffffff;
}

.profile-field-with-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-field-with-status .profile-field-input {
    width: 250px;
    flex-shrink: 0;
}

.profile-field-readonly {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 12px 15px;
    font-size: 16px;
    color: #666;
    width: 250px;
    flex-shrink: 0;
}

.profile-save-section {
    margin-top: 10px;
    padding-top: 10px;
}

.save-personal-btn {
    background: #228B22;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.save-personal-btn:hover {
    background: #1e7a1e;
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.verification-status.item-verified {
    color: #228B22;
}

.verification-status.item-unverified a {
    color: #FF3B30;
    text-decoration: underline;
}

.status-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.verification-status.item-verified .status-icon {
    background-color: #28a745;
    color: white;
}

.verification-status.item-unverified .status-icon {
    background-color: #FF3B30;
    color: white;
}

/* Password change section */
.password-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.password-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.password-field-label {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.password-input-box {
    position: relative;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 5px 40px 5px 10px;
}

.password-input-box input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #333;
    width: 100%;
}

.save-password-btn {
    align-self: flex-start;
    margin-top: 10px;
}

/* Profile info section */
.profile-info-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-info-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.profile-bio-field textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 15px;
    font-size: 16px;
    resize: vertical;
    background: #fff;
}

.char-counter {
    font-size: 14px;
    color: #666;
}

.save-profile-btn {
    align-self: flex-start;
}

/* Telegram section */
.telegram-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.telegram-connected {
    display: flex;
    gap: 15px;
    align-items: center;
}

.telegram-connect-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.telegram-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0088cc;
    font-size: 24px;
    flex-shrink: 0;
}

.telegram-info {
    flex: 1;
}

.telegram-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.telegram-connect-button {
    margin-top: 15px;
}

.telegram-actions {
    margin-top: 20px;
    padding-top: 15px;
}

/* Notifications section */
.notifications-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.notification-warning {
    background: #fff;
    border: 1px solid #228B22;
    color: #666;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Убрать старые стили слайдеров и notification-group */
/* .notification-group, .notification-switches, .switch, .slider { display: none !important; } */

.notification-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.notification-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.notification-channels {
    display: flex;
    gap: 30px;
}

.notification-channels span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.notification-description {
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    border-bottom: 1px solid #e0e0e0;
}

.notifications-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}
.notifications-table-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: none;
    font-size: 15px;
    color: #888;
    font-weight: 400;
    margin-bottom: 8px;
}
.notifications-table-groupcell {
    width: 180px;
    min-width: 120px;
    font-size: 15px;
    color: #333;
    font-weight: 400;
    padding: 8px 0 8px 0;
}
.notifications-table-channel {
    flex: 1;
    text-align: center;
    font-size: 15px;
    color: #888;
    font-weight: 400;
}
.notifications-table-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: none;
    border-bottom: 1px solid #E0E0E0;
    min-height: 44px;
}
.notifications-table-row:last-child {
    border-bottom: none;
}
.notifications-table-cell {
    flex: 1;
    text-align: center;
    padding: 8px 0;
}
.notifications-table-cell input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #228B22;
    cursor: pointer;
}

.save-notifications-btn {
    margin-top: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .profile-settings-bg {
        margin: 5px !important;
        border-radius: 12px !important;
        width: calc(100% - 10px) !important;
    }
    
    .profile-main-container {
        padding: 20px;
    }
    
    .profile-settings-container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .avatar-container {
        padding: 20px;
    }
    
    .profile-main-sections {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .profile-secondary-sections {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .profile-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .profile-field-with-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .verification-status {
        align-self: flex-start;
    }
    
    .notification-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .notification-channels {
        gap: 20px;
    }
    
    .notification-switches {
        gap: 60px;
    }
    
    .telegram-connected,
    .telegram-connect-info {
        flex-direction: column;
        text-align: center;
    }
    
    .telegram-icon {
        align-self: center;
    }

    .profile-field-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Мобильная версия уведомлений */

    
    .notifications-mobile {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin: 10px;
    }
    
    .notification-group-mobile {
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .notification-type-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin: 0 0 16px 0;
        padding-bottom: 8px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .notification-channels-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .notification-channel-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
        cursor: pointer;
    }
    
    .channel-name {
        font-size: 14px;
        color: #666;
        font-weight: 500;
    }
    
    .notification-channel-mobile input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: #228B22;
        cursor: pointer;
    }
}

.profile-secondary-sections {
    border-top: 1px solid #C7C7C7;
    border-bottom: 1px solid #C7C7C7;
    padding-top: 32px;
    padding-bottom: 32px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.common-settings-grid {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 50px;
    margin-top: -40px;
}

.common-data-block {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.desc-text {
    width: 100%;
    max-width: 100%;
}

.avatar-block {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.avatar-circle {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 10px #a3a3a3;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-side-settings {
    flex: 1;
}

.avatar-in-list {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 10px #a3a3a3;
    margin: 10px 5px;
}

.avatar-in-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.select-avatar-btn {
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    color: #666;
}

.select-avatar-btn:hover {
    color: #228B22;
}

.delete-avatar-btn {
    margin-top: 10px;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    color: #228B22;
}
.delete-avatar-btn:hover {
    color: #666;
}


.input-box {
    display: inline;
    background: #ffffff;
    border: none;
    color: #383a3f;
    box-shadow: 0 1px 10px #a3a3a3;
    border-radius: 10px;
    padding: 10px;
    font-size: 20px;
    outline: none;
    position: relative;
}

body.dark-theme .input-box {
    background: #383a3f;
    color: #fff;
}

.input-box input {
    border: none;
    outline: none;
    flex-grow: 1; /* Растягивает поле ввода, чтобы занимало всё доступное пространство */
    font-size: 20px;
    color: #383a3f;
    background: transparent; /* Подстраивает фон под родительский контейнер */
}

body.dark-theme .input-box input {
    background: #383a3f;
    color: #fff;
}

.input-label {
    width: 250px;
    font-size: 20px;
}

.input-box textarea {
    width: 100%
}

body.dark-theme .input-box textarea {
    background: #383a3f;
    color: #fff;
}

/* Значок просмотра пароля */
.toggle-password {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #888;
        margin-right: 5px;
}

.toggle-password:hover {
    color: #333;
}

.password-field {
    font-size: 20px;
    border: none;
    outline: none;
}

/* Для того чтобы иконка глаза не перекрывала текст в поле */
input[type="password"] {
    padding-right: 30px;
}


/* Стили для Cropper.js 2.0 - веб-компоненты */
cropper-canvas {
    border-radius: 0 !important;
    width: 100% !important;
    height: 500px !important;
    position: relative !important;
}

cropper-image {
    width: 100% !important;
    height: 100% !important;
}

/* Затемнение для области вне выделения */
cropper-shade {
    background-color: rgba(0, 0, 0, 0.5) !important;
    display: block !important;
}

cropper-selection {
    border-radius: 50% !important;
    overflow: hidden !important;
    outline: 3px solid #228B22 !important;
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5) !important;
    min-width: 200px !important;
    min-height: 200px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Внутренняя область выделения должна быть четкой */
cropper-selection::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 3px solid #228B22;
    pointer-events: none;
    z-index: 1;
}

/* Альтернативные стили для старых версий Cropper.js */
.cropper-view-box, 
.cropper-face,
.cropper-crop-box,
[class*="cropper-view"],
[class*="cropper-face"],
[class*="cropper-crop"] {
    border-radius: 50% !important;
    overflow: hidden !important;
}

.cropper-view-box {
    outline: none !important;
    box-shadow: 0 0 0 2px #228B22 !important;
}

.cropper-modal {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

/* Дополнительные стили для контейнера кроппера */
.cropper-container,
.cropper-wrap-box,
.cropper-canvas {
    border-radius: 0 !important;
}

/* Скрываем фон кроппера для лучшего вида */
.cropper-bg {
    background-image: none !important;
}

/* Модальное окно для обрезки аватара */
#avatar-cropper-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

/* Контейнер для окна обрезки */
#avatar-cropper-container {
    background-color: #fff;
    border-radius: 10px;
    width: 700px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.dark-theme #avatar-cropper-container {
    background-color: #383a3f;
    color: #fff;
}

/* Заголовок модального окна */
#avatar-cropper-container h4 {
    margin: 0;
    padding: 20px 20px 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}

body.dark-theme #avatar-cropper-container h4 {
    color: #fff;
}

/* Форма в модальном окне */
#avatar-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 0 20px 20px 20px;
}

/* Контейнер для изображения */
.avatar-crop-container {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
}

#avatar-to-crop {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    display: block;
    margin: 0;
    flex: 1;
    min-height: 0;
}

/* Кнопка закрытия модального окна */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    z-index: 1001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

body.dark-theme .modal-close {
    color: #ccc;
}

body.dark-theme .modal-close:hover {
    color: #fff;
}

/* Кнопка сохранения */
#crop-avatar-btn {
    margin-top: 15px;
    padding: 12px 24px;
    background-color: #228B22;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    min-height: 44px;
    flex-shrink: 0;
    width: 100%;
}

#crop-avatar-btn:hover {
    background-color: #176d16;
}

.guest-rating .star {
    color: #FFD700; /* Ярко-желтый цвет для заполненных звезд */
    font-size: 2em;
}

.guest-rating .star.empty {
    color: #E0E0E0; /* Светло-серый цвет для пустых звезд */
}

.review-list-card-profile {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    gap: 20px;
    align-items: start;
    cursor: pointer;
    background: #ffffff;
    color: #383a3f;
    box-shadow: 0 1px 10px #a3a3a3;
    border-radius: 10px;
    padding: 10px 15px;
}

body.dark-theme .review-list-card-profile {
    background: #383a3f;
    color: #fff;
}

.profile-top-block {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 15px;
    width: 100%;
}

.profile-bottom-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
}

.telegram-settings-block {
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 400px;
}
.notifications-settings-block {
    flex: 2 1 600px;
    background: #F5F5F7;
    border-radius: 24px;
    padding: 32px 32px 24px 32px;
    min-width: 400px;
    max-width: 700px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .common-settings-grid {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
        max-width: 100%;
        width: 100%;
        gap: 50px;
        margin: -120px -5px 0px -5px;

    }

    .common-data-block {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
        margin: 0;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 1px 10px #a3a3a3;
    }

    .common-settings-grid h3 {
        font-size: 18px;
    }

    .desc-text {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
        color: #666;
    }

    .input-box {
        margin-bottom: 15px;
    }

    .avatar-block {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .right-side-settings {
        width: 100%;
        max-width: 100%;
    }

    .profile-top-block {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .profile-top-block h1 {
        font-size: 24px;
    }

    .pagination span {
        font-size: 14px;
    }

    .mobile-settings-button {
        display: block;
        width: 100%;
        padding: 12px;
        background: #228B22;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    /* Адаптивность для модального окна обрезки аватара */
    #avatar-cropper-modal {
        padding: 10px;
    }

    #avatar-cropper-container {
        width: 95vw;
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }

    #avatar-cropper-container h4 {
        font-size: 16px;
        padding: 15px 15px 10px 15px;
    }

    #avatar-form {
        padding: 0 15px 15px 15px;
    }

    .avatar-crop-container {
        margin-bottom: 10px;
    }

    #crop-avatar-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-height: 40px;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 20px;
        width: 25px;
        height: 25px;
    }

    .profile-bottom-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    
    /* Мобильная оптимизация блоков Telegram и уведомлений */
    .telegram-settings-block {
        flex: none;
        min-width: 0;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .notifications-settings-block {
        flex: none;
        min-width: 0;
        max-width: 100%;
        width: 100%;
        padding: 20px 16px;
        border-radius: 16px;
        margin: 0;
    }
    
    .notifications-container {
        width: 100%;
        max-width: 100%;
    }
    
    .notifications-container h2 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .notifications-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    
    .notification-warning {
        font-size: 13px;
        padding: 10px 12px;
        margin-bottom: 16px;
    }
}

/* Специальные стили для экранов с маленькой высотой */
@media (max-height: 600px) {
    #avatar-cropper-modal {
        padding: 5px;
    }

    #avatar-cropper-container {
        max-height: calc(100vh - 10px);
    }

    #avatar-cropper-container h4 {
        font-size: 14px;
        padding: 10px 15px 8px 15px;
    }

    #avatar-form {
        padding: 0 15px 10px 15px;
    }

    .avatar-crop-container {
        margin-bottom: 8px;
    }

    #crop-avatar-btn {
        padding: 8px 16px;
        font-size: 14px;
        min-height: 36px;
        margin-top: 10px;
    }

    .modal-close {
        top: 5px;
        right: 10px;
        font-size: 18px;
        width: 20px;
        height: 20px;
    }
}

/* --- Password fields classic label style --- */
.password-label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
    margin-left: 2px;
    font-weight: 500;
}
.password-input {
    width: 100%;
    padding: 12px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 16px;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 0;
}
.password-input:focus {
    border-color: #2a7ae2;
}
.password-input-box {
    position: relative;
}
.password-input-box .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}
/* Удаляем плавающие лейблы */
/* .floating-label-group, .floating-label, .floating-input { display: none !important; } */

.input-with-label-gap {
    position: relative;
    margin-bottom: 1.5em;
}
.label-gap {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #fff;
    padding: 0 6px;
    font-size: 14px;
    color: #888;
    font-weight: normal;
    z-index: 2;
    pointer-events: none;
}
.input-gap {
    width: 100%;
    padding: 18px 12px 12px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 16px;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 0;
}
.input-gap:focus {
    border-color: #228B22;
}
.input-with-label-gap .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.notifications-table-channel,
.notifications-table-cell {
    min-width: 110px;
    padding-left: 12px;
    padding-right: 12px;
}
.notifications-table-header,
.notifications-table-row {
    justify-content: space-between;
}

.notifications-container h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}