.alertify .ajs-dialog {
    border-radius: 4px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(98, 105, 118, 0.16);
    min-width: 400px;
    max-width: 600px;
}

.alertify .ajs-header {
    color: #1e293b;
    font-weight: 600;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(98, 105, 118, 0.16);
}

.alertify .ajs-body {
    color: #626976;
    padding: 1.25rem;
    min-height: 100px;
}

.alertify .ajs-footer {
    padding: 1rem;
    border-top: 1px solid rgba(98, 105, 118, 0.16);
}

.alertify .ajs-button {
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
    margin: 0.25rem;
    border: 1px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.alertify .ajs-button.ajs-ok {
    background-color: transparent;
    color: #206bc4;
    border-color: #206bc4;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.alertify .ajs-button.ajs-ok:hover {
    background-color: transparent;
    border-color: #1a549c;
    color: #1a549c;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.alertify .ajs-button.ajs-cancel {
    background-color: transparent;
    border-color: #d9dbde;
    color: #1e293b;
}

.alertify .ajs-button.ajs-cancel:hover {
    background-color: transparent;
    border-color: #cbd5e1;
    color: #1e293b;
}

.alertify-notifier .ajs-message {
    border-radius: 4px;
    padding: 1rem;
    opacity: 1;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.alertify-notifier .ajs-message.ajs-success {
    background-color: #2fb344;
    color: #ffffff;
}

.alertify-notifier .ajs-message.ajs-error {
    background-color: #d63939;
    color: #ffffff;
}

.alertify-notifier .ajs-message.ajs-warning {
    background-color: #f59f00;
    color: #ffffff;
}

@import url('https://rsms.me/inter/inter.css');

:root {
    --tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
}

body {
    font-feature-settings: "cv03", "cv04", "cv11";
}

.welcome-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-card {
    transition: transform 0.2s;
}

.stats-card:hover {
    transform: translateY(-2px);
}

.badge,
.badge svg,
.badge svg * {
    color: #fff !important;
    fill: #fff !important;
    stroke: #fff !important;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 160px;
    padding: 0.5rem 0;
    margin: 0;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
}

.dropdown-menu.show {
    display: block;
}

.dropdown {
    position: relative;
}

.alertify-notifier .ajs-message {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    border-left: 4px solid #28a745;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-weight: 500;
    padding: 12px 16px;
    margin-bottom: 8px;
}

.alertify-notifier .ajs-message.ajs-success {
    border-left-color: #28a745;
}

.alertify-notifier .ajs-message.ajs-error {
    border-left-color: #dc3545;
}

.alertify-notifier .ajs-message.ajs-warning {
    border-left-color: #ffc107;
}