* {
    box-sizing: border-box;
}

:root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    background: #0f1419;
    color: #e4e8f0;
    --primary: #6366f1;
    --primary-hover: #818cf8;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    --weak: #ef4444;
    --medium: #f59e0b;
    --strong: #10b981;
    --surface: #1a202c;
    --surface-hover: #232f48;
    --border: #2d3748;
    --text-secondary: #a0aec0;
    --text-tertiary: #718096;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    line-height: 1.5;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.hidden {
    display: none !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-tertiary);
}

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-height: 100vh;
}

.auth-container {
    width: min(460px, 100%);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.auth-hint {
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: center;
    margin: 0;
}

.auth-requirements {
    font-size: 13px;
    color: var(--text-secondary);
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 9px;
    padding: 12px 14px;
    margin: 0;
    line-height: 1.6;
}

.auth-requirements strong {
    display: block;
    margin-bottom: 8px;
    color: white;
}

.auth-footer {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 12px;
}

.alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ff8d99;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.topbar {
    height: 70px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 32, 44, 0.8);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: slideDown 0.5s ease;
}

.brand h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand p {
    margin: 6px 0 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    font-size: 28px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
}

.brand-icon.small {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
}

.topbar-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.icon-button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
}

.icon-button:hover {
    background: var(--surface-hover);
    transform: scale(1.05);
}

.primary-button,
.secondary-button {
    border: 0;
    border-radius: 10px;
    padding: 10px 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 14px;
}

.primary-button {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.primary-button:hover {
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
}

.primary-button:active {
    transform: translateY(0);
}

.secondary-button {
    background: var(--surface);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.secondary-button:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
    color: white;
}

.full {
    width: 100%;
}

.vault-layout {
    display: flex;
    min-height: calc(100vh - 70px);
}

.sidebar {
    width: 260px;
    padding: 25px;
    border-right: 1px solid var(--border);
    background: rgba(26, 32, 44, 0.4);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item,
.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    font-size: 14px;
    text-align: left;
    width: 100%;
}

.nav-item:hover {
    background: var(--surface-hover);
    color: white;
}

.nav-item.active,
.category-item.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.nav-item strong,
.category-item strong {
    margin-left: auto;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.sidebar-section {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.section-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.category-item {
    font-size: 13px;
    padding: 10px 12px;
}

.sidebar-stats {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-item {
    background: var(--surface);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.stat-value.weak {
    color: #ef4444;
}

.stat-value.old {
    color: #f59e0b;
}

.stat-label {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vault-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.content-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-header p {
    margin: 8px 0 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.search-box {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 450px;
}

.search-box input {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: white;
    border-radius: 10px;
    padding: 11px 14px;
    outline: none;
    transition: all 0.2s ease;
}

.search-box input:focus {
    border-color: var(--primary);
    background: var(--surface-hover);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.filter-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 13px;
}

.filter-item input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary);
}

.credential-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.credential-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.credential-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.credential-card:hover {
    border-color: var(--primary);
    background: var(--surface-hover);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.credential-card:hover::before {
    opacity: 1;
}

.credential-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.credential-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    color: #a78bfa;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.credential-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.credential-info p {
    margin: 4px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.credential-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    font-size: 12px;
}

.credential-meta span {
    background: rgba(99, 102, 241, 0.1);
    color: #a78bfa;
    padding: 2px 8px;
    border-radius: 4px;
}

.credential-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.credential-favorite.active {
    opacity: 1;
}

.credential-username {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    font-family: 'Monaco', 'Menlo', monospace;
}

.credential-username span {
    color: var(--text-secondary);
}

.credential-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.credential-actions button {
    flex: 1;
    border: 1px solid var(--border);
    background: rgba(99, 102, 241, 0.05);
    color: var(--text-secondary);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 0;
}

.credential-actions button:hover {
    background: rgba(99, 102, 241, 0.15);
    color: white;
    border-color: var(--primary);
}

.credential-actions button.danger {
    color: #ef4444;
}

.credential-actions button.danger:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    color: var(--text-secondary);
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
    padding: 20px;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.auth-card,
.modal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
}

.auth-card {
    width: 100%;
}

.modal-card {
    width: min(600px, 100%);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tabs {
    display: flex;
    gap: 8px;
    background: transparent;
    padding: 0 0 16px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.tab {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.tab:hover {
    color: white;
}

.tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.auth-form input {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 9px;
    padding: 11px 13px;
    outline: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.auth-form input:focus {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.close-button {
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.close-button:hover {
    background: var(--surface-hover);
    color: white;
}

#credentialForm,
.settings-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 9px;
    padding: 11px 13px;
    outline: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0aec0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 32px;
    appearance: none;
}

.password-field {
    display: flex;
    gap: 8px;
}

.password-field input {
    flex: 1;
}

.strength-bar {
    height: 4px;
    background: var(--surface-hover);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 6px;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: all 0.2s ease;
    background: #ef4444;
}

.strength-bar.weak::after {
    width: 33%;
    background: #ef4444;
}

.strength-bar.medium::after {
    width: 66%;
    background: #f59e0b;
}

.strength-bar.strong::after {
    width: 100%;
    background: #10b981;
}

.strength-text {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 4px;
    font-weight: 500;
}

.strength-text.weak {
    color: #ef4444;
}

.strength-text.medium {
    color: #f59e0b;
}

.strength-text.strong {
    color: #10b981;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
}

.checkbox-label input {
    width: auto;
    accent-color: var(--primary);
    cursor: pointer;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.settings-tabs {
    flex-direction: row;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.tab-button {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.tab-button:hover {
    color: white;
}

.tab-button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.token-result {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.token-result textarea {
    margin: 8px 0;
    min-height: 100px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 12px;
}

.muted {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.security-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-item {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    padding: 16px;
    border-left: 4px solid var(--warning);
}

.security-item.critical {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.security-item.success {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.security-item h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
}

.security-item p {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    z-index: 2000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.toast.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.toast.info {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: #a78bfa;
}

@media (max-width: 768px) {
    .auth-page {
        padding: 20px;
    }

    .auth-container {
        gap: 20px;
    }

    .brand {
        gap: 12px;
    }

    .brand h1 {
        font-size: 24px;
    }

    .brand-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 24px;
    }

    .auth-card {
        padding: 20px;
    }

    .auth-form input {
        padding: 10px 12px;
        font-size: 16px;
    }

    .strength-bar {
        margin-top: 8px;
    }

    .tabs {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .tab {
        padding: 10px 0;
        font-size: 13px;
    }

    .auth-requirements {
        font-size: 12px;
        padding: 10px 12px;
    }

    .auth-requirements strong {
        margin-bottom: 6px;
    }
}

@media (max-width: 1024px) {
    .vault-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-direction: row;
        gap: 20px;
        overflow-x: auto;
    }

    .sidebar-nav,
    .sidebar-section,
    .sidebar-stats {
        flex-shrink: 0;
    }

    .vault-content {
        padding: 30px;
    }

    .credential-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 0 15px;
        height: 60px;
    }

    .topbar-brand {
        font-size: 16px;
    }

    .brand-icon.small {
        width: 36px;
        height: 36px;
    }

    .sidebar {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 15px;
        overflow-y: auto;
    }

    .sidebar-nav {
        flex-direction: row;
        gap: 6px;
        overflow-x: auto;
    }

    .nav-item {
        padding: 10px 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .nav-item strong {
        display: none;
    }

    .sidebar-section,
    .sidebar-stats {
        display: none;
    }

    .vault-content {
        padding: 20px;
    }

    .content-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .content-header h2 {
        font-size: 24px;
    }

    .search-box {
        max-width: 100%;
    }

    .credential-grid {
        grid-template-columns: 1fr;
    }

    .modal-card {
        width: 100%;
        padding: 20px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 8px;
    }

    .modal-actions button {
        width: 100%;
    }

    .filter-panel {
        flex-direction: column;
        gap: 10px;
    }

    .filter-item {
        width: 100%;
    }

    .topbar-actions .secondary-button {
        display: none;
    }

    .topbar-actions .icon-button {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .settings-tabs {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 15px;
        border-bottom: none;
    }

    .tab-button {
        border-bottom: 1px solid var(--border);
        padding: 10px 0;
    }

    .tab-button.active {
        border-bottom-color: var(--primary);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}