﻿        /* Общий класс для модалок-«тостов» (notification, logout, restore, accountData, edit) */
        .modal-content--toast {
            position: absolute;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            width: 420px;
            max-width: 95%;
            display: flex;
            flex-direction: column;
            border-radius: 16px;
            animation: toastSlideIn 0.22s ease;
        }
        @keyframes toastSlideIn {
            from { opacity: 0; transform: translate(-50%, -8px); }
            to   { opacity: 1; transform: translate(-50%, 0); }
        }

        .modal-content--toast button {
            margin-top: var(--space-3);
            width: 100%;
            box-sizing: border-box;
            height: 48px;
        }
        .modal-content--toast.modal-content--confirm button {
            margin-top: 0;
            width: auto;
            height: auto;
        }

        .logout-container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 10px;
        }
        
        .grey-text {
            color: #333;
        }
        
        .days-rectangle {
            border-radius: 15px;
            padding: 3px 15px;
            font-size: 0.9em; /* или другой подходящий размер */
        }
        
        .days-rectangle-blue {
            background-color: var(--accent-info);
            color: #fff;
        }
        
        .days-rectangle-green {
            background-color: #90EE90; /* Светло-зеленый */
            color: #006400; /* Темно-зеленый */
        }
        
        .password-container {
            position: relative; /* Важно для позиционирования значка внутри */
        }

        .password-input {
            padding-right: 35px; /*  Оставляем место для иконки справа  */
        }
        /* Скрываем нативную иконку «глаз» в Edge/IE */
        .password-input::-ms-reveal,
        .password-input::-ms-clear {
            display: none;
        }

        .password-toggle {
            position: absolute;
            top: 50%;
            right: 10px; /*  Регулируем положение иконки справа  */
            transform: translateY(-50%);
            cursor: pointer;
            color: #aaa; /*  Цвет иконки  */
            z-index: 5;
        }
