
.wsl-modern-table { margin: 20px 0; border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; font-family: inherit; }
.wsl-table-head { background: var(--wsl-th-bg); color: var(--wsl-th-text); padding: 12px; text-align: center; font-weight: bold; }
.wsl-modern-table table { width: 100%; border-collapse: collapse; background: #fff; margin: 0; }
.wsl-modern-table td, .wsl-modern-table th { padding: 10px; text-align: center; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
.wsl-hint { background: var(--wsl-msg-bg); color: var(--wsl-msg-text); border-right: 4px solid var(--wsl-msg-border); padding: 12px; margin-bottom: 8px; border-radius: 6px; font-size: 14px; line-height: 1.6; }
.min-hint { border-right-color: #e11d48; background: #fff1f2; color: #9f1239; }
.max-hint { border-right-color: #f59e0b; background: #fffbeb; color: #92400e; }

/* Modal */
.wsl-modal { position: fixed; z-index: 100000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(2px); }
.wsl-modal-content { background-color: #fff; margin: auto; padding: 30px; border-radius: 16px; width: 90%; max-width: 400px; text-align: center; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); animation: wslFade 0.3s; position: relative; }
.wsl-close { position: absolute; top: 15px; left: 20px; font-size: 24px; color: #94a3b8; cursor: pointer; }
.wsl-icon { font-size: 48px; margin-bottom: 15px; }
.wsl-btn-ok { background: #2563eb; color: #fff; border: none; padding: 10px 30px; border-radius: 8px; margin-top: 20px; cursor: pointer; font-size: 16px; font-weight: bold; transition: .2s; }
.wsl-btn-ok:hover { background: #1d4ed8; transform: translateY(-2px); }
@keyframes wslFade { from {opacity: 0; transform: scale(0.9);} to {opacity: 1; transform: scale(1);} }
