.toastify {  cursor: auto !important;  }.notification-overlay {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    background: rgba(0, 0, 0, 0.55);    backdrop-filter: blur(2px);    z-index: 99998;    animation: fadeIn 0.2s ease-out;}@keyframes fadeIn {    from {        opacity: 0;    }    to {        opacity: 1;    }}@keyframes slideIn {    from {        transform: translateY(-20px);        opacity: 0;    }    to {        transform: translateY(0);        opacity: 1;    }}.custom-notification {    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;    min-width: 400px;    max-width: 525px;    position: relative;    z-index: 99999;    animation: slideIn 0.2s ease-out;}.notification-container {    background: #2f3241;    border-radius: 10px;    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);    overflow: hidden;    border: 2px solid gray;      max-width: 85%;  max-height: 85%;  }.notification-header {    background: linear-gradient(to bottom, #705775, #52445a);    padding: 6px 10px 6px 20px;    display: flex;    justify-content: space-between;    align-items: center;    border-bottom: 1px solid #1a1b26;    color: #fff;}.notification-header strong {    font-size: 1.15em;    margin: 0;    text-shadow: none;}.notification-close {    color: #fff;    border: 1px solid red;    font-size: 1.1em;    font-weight: bold;    color: #fff;    width: 24px;    height: 24px;    border-radius: 50%;    cursor: pointer;    display: flex;    align-items: center;    justify-content: center;    background-color: rgba(255, 99, 71, 0.2);    transition: background-color 0.2s;    padding: 0;    line-height: 1;    margin: -4px 0;    position: relative;    top: 1px;}.notification-close::before {    content: '×';    display: block;    position: relative;    top: -1px;  }.notification-close:hover {    background-color: rgba(255, 99, 71, 0.4);}.notification-body {    padding: 20px;    background: #f0f0f0;    color: #2f3241;    font-size: 0.925em;}body.dark-mode .notification-container {    background: #1a1a1a;    box-shadow: 0 4px 20px rgba(217, 213, 213, 0.7);    border: 1px solid #a0a0a0;}body.dark-mode .notification-header {    background: linear-gradient(to bottom, #a899a8, #7f6786);    border-bottom: 1px solid #000;    color: rgb(255, 246, 245);}body.dark-mode .notification-body {    background: #737373;    color: #fff;}.notification-buttons {    display: flex;    justify-content: space-around;     gap: 10px;    padding: 4px 4px;    font-size: 0.9em    border-top: 1px solid rgba(255, 255, 255, 0.2);    background-color: purple;}.notification-btn {    padding: 8px 20px;    border: none;    border-radius: 4px;    cursor: pointer;    font-weight: bold;    transition: background-color 0.2s;}.notification-ok {    background-color: rgba(255, 255, 255, 0.9);    color: #fff;}.notification-cancel {    background-color: rgba(255, 255, 255, 0.2);    color: white;}.notification-btn:hover {    opacity: 0.8;}body.dark-mode .notification-buttons {  background-color: #604f60;}