/* DMWare Dark Theme - Sitiware.it Inspired Palette */
:root {
    /* Color Palette */
    --dark-gray: #0f0f0f;
    --lighter-gray: #1b1b1b;
    --very-light-gray: #313131;
    --sea-blue: #4c85a2;
    --darker-sea-blue: #3b687f;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-accent: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}

#registrationForm input, #registrationForm textarea, #registrationForm select {color: white;}

/* Global Dark Theme */
body {
    background: var(--dark-gray);
    color: var(--text-primary);
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    padding-top: 64px; /* Just the navbar height */
}

/* Seamless Section Backgrounds */
.hero-section {
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    min-height: auto;
}

/* Hero section specific styling */
.hero-section {
    min-height: calc(100vh - 64px); /* Full viewport height minus navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0; /* Remove extra padding */
    padding-bottom: 2rem;
}

/* Ensure all sections are properly positioned */
section {
    position: relative;
    z-index: 1; /* Below navbar */
}

/* Target the first heading on each page for proper spacing */
section:first-of-type h1,section:first-child h1
.headerbg h1,
.headerbg h2,
.headerbg h3 {
    margin-top: 40px; /* 40px spacing from header as requested */
}

/* Section Backgrounds */
.section-dark {
    background: linear-gradient(180deg, var(--lighter-gray) 0%, var(--dark-gray) 100%);
}

.section-medium {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--very-light-gray) 100%);
}

.section-light {
    background: linear-gradient(180deg, var(--very-light-gray) 0%, var(--lighter-gray) 100%);
}

/* Navigation */
.navbar-dark {
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.3) 0%, rgba(27, 27, 27, 0.2) 100%);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    width: 100%;
}

/* Enhanced navbar transparency on scroll */
.navbar-dark.scrolled {
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.6) 0%, rgba(27, 27, 27, 0.5) 100%);
    backdrop-filter: blur(30px);
    box-shadow: none;
}

.navbar-dark .nav-link {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    font-weight: 600;
}

.navbar-dark .nav-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Logo styling for better visibility on transparent background */
.navbar-dark img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Logo hover effect */
.navbar-dark img:hover {
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Mobile Menu */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
    background: rgba(15, 15, 15, 0.4) !important;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#mobile-menu.hidden {
    animation: slideUp 0.3s ease-in;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Mobile menu styling */
#mobile-menu .nav-link:hover {
    background: rgba(76, 133, 162, 0.3);
    color: var(--text-primary);
}

#mobile-menu .btn-primary-dark {
    margin-top: 8px;
    padding: 8px 16px;
}

/* Cards */
.card-dark {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(27, 27, 27, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    border-color: rgba(76, 133, 162, 0.3);
}

/* Buttons */
.btn-primary-dark {
    background: var(--sea-blue);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-dark:hover {
    background: var(--darker-sea-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 133, 162, 0.4);
    color: var(--text-primary);
    text-decoration: none;
}

.btn-secondary-dark {
    background: transparent;
    border: 2px solid var(--sea-blue);
    color: var(--text-primary);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-secondary-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sea-blue);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary-dark:hover::before {
    left: 0;
}

.btn-secondary-dark:hover {
    color: var(--text-primary);
    border-color: var(--darker-sea-blue);
    text-decoration: none;
}

/* Text Elements */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: 'Zen Kaku Gothic Antique', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--text-accent);
}

.text-secondary-dark {
    color: var(--text-secondary);
}

/* Primary text color override - highest specificity */
span.text-3xl.font-bold.text-primary,
.text-3xl.font-bold.text-primary,
span.text-primary,
div.text-primary,
.text-primary {
    color: var(--sea-blue) !important;
}

/* Ensure Tailwind primary colors work in dark theme */
.text-blue-600,
.text-blue-500 {
    color: var(--sea-blue) !important;
}

/* Specific price styling with high specificity */
.plan-card span.text-primary,
.card-dark span.text-primary,
.section-dark span.text-primary,
body span.text-primary {
    color: var(--sea-blue) !important;
}

/* Typography Classes */
.font-figtree {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
}

.font-zen {
    font-family: 'Zen Kaku Gothic Antique', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Specific heading styles */
h1 {
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-weight: 700;
    line-height: 1.3;
}

h4, h5, h6 {
    font-weight: 500;
    line-height: 1.4;
}

/* Body text improvements */
p {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

/* Navigation text */
.nav-link {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
}

/* Features Grid */
.feature-icon {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(27, 27, 27, 0.9));
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.feature-icon svg {
    color: var(--sea-blue);
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(27, 27, 27, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 133, 162, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    border-color: rgba(76, 133, 162, 0.3);
}

.popular-badge {
    background: linear-gradient(45deg, var(--sea-blue) 0%, var(--darker-sea-blue) 100%);
    color: var(--text-primary);
    font-weight: 700;
}

/* Footer */
.footer-dark {
    background-color: #1b1b1b;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section::before {
        background-attachment: scroll;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .btn-primary-dark,
    .btn-secondary-dark {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--sea-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--darker-sea-blue);
}

/* Sitiware.it Gradient Classes */
.ware-gradient-row {
    background: linear-gradient(to bottom, #0e2e67 0%, #222373 25%, #1a237e 50%, #4a148c 100%);
    color: white; 
    padding: 20px 20px; 
    overflow: hidden;
}

.ware-darker-gradient-row {
    background: linear-gradient(to bottom, #4a148c 0%, #1a237e 30%, #14225e 65%, #0f3d7f 100%);
    color: white; 
    padding: 20px 20px; 
    overflow: hidden;
}

.ware-fromdarkblu-gradient-row {
    background: linear-gradient(to bottom, #132571 0%, #1a237e 30%, #14225e 65%, #0f3d7f 100%);
    color: white; 
    padding: 20px 20px; 
    overflow: hidden;
}

.ware-gradient-row-reverse {
    background: linear-gradient(to bottom, #0f3d7f 0%, #14225e 35%, #1a237e 70%, #222373 85%, #0e2e67 100%);
    color: white; 
    padding: 20px 20px; 
    overflow: hidden;
}

.ware-gradient-to-dark {
    background: linear-gradient(to bottom, #0f3d7f 0%, #14225e 40%, #1a237e 65%, #1a1a1a 100%);
    color: white; 
    padding: 60px 20px; 
    overflow: hidden;
}

.ware-gradient-bluto-gray {
    background: linear-gradient(to bottom, #062e85 0%, #14225e 40%, #1a237e 65%, #494441 100%);
    color: white; 
    padding: 60px 20px; 
    overflow: hidden;
}

.ware-gradient-row-toblu {
    background: linear-gradient(to bottom, #0e2e67 0%, #222373 10%, #1a237e 23%, #4a148c 50%, #131f58 100%);
    color: white; 
    padding: 20px 20px; 
    overflow: hidden;
}

.ware-gradient-row-blacktoblu {
    background: linear-gradient(to bottom, #1a1a1a 0%, #1a1a1a 40%, #14225e 60%, #0f3d7f 100%);
    color: white; 
    padding: 20px 20px; 
    overflow: hidden;
}

.ware-gradient-row-backtodarkgray {
    background: linear-gradient(to bottom, #4a148c 0%, #1a237e 30%, #14225e 65%, #1b1b1b 100%);
    color: white; 
    padding: 20px 20px; 
    overflow: hidden;
}

.ware-gradient-row-bluetodarkgray {
    background: linear-gradient(to bottom, #0e2e67 0%, #1a237e 30%, #14225e 65%, #1b1b1b 100%);
    color: white; 
    padding: 20px 20px; 
    overflow: hidden;
}

.ware-wp-card {
    background: linear-gradient(145deg, rgba(14, 46, 103, 0.85), rgba(34, 35, 115, 0.85), rgba(25, 20, 60, 0.85));
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    color: white;
    padding: 30px;
}

.ware-wp-card-1 {
    background: linear-gradient(145deg, rgba(14, 46, 103, 0.85), rgba(34, 35, 115, 0.85), rgba(25, 20, 60, 0.85));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    color: white;
    padding: 30px;
}

.ware-wp-card-2 {
    background: linear-gradient(145deg, rgba(22, 33, 95, 0.85), rgba(38, 17, 91, 0.85), rgba(61, 10, 93, 0.85));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    color: white;
    padding: 30px;
}

.ware-wp-card-3 {
    background: linear-gradient(145deg, rgba(17, 25, 56, 0.85), rgba(28, 45, 89, 0.85), rgba(14, 24, 62, 0.85));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    color: white;
    padding: 30px;
}

.ware-wp-card-4 {
    background: linear-gradient(145deg, rgba(44, 17, 97, 0.85), rgba(72, 19, 105, 0.85), rgba(111, 32, 119, 0.85));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    color: white;
    padding: 30px;
}

.ware-wp-card-table {
    background: linear-gradient(145deg, rgba(14, 46, 103, 0.85), rgba(34, 35, 115, 0.85), rgba(25, 20, 60, 0.85));
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    color: white;
    padding: 5px;
}

/* Additional utility classes for the new theme */
.bg-dark-gray { background-color: var(--dark-gray); }
.bg-lighter-gray { background-color: var(--lighter-gray); }
.bg-very-light-gray { background-color: var(--very-light-gray); }
.bg-sea-blue { background-color: var(--sea-blue); }
.bg-darker-sea-blue { background-color: var(--darker-sea-blue); }

.text-sea-blue { color: var(--sea-blue); }
.text-darker-sea-blue { color: var(--darker-sea-blue); }

.border-sea-blue { border-color: var(--sea-blue); }
.border-darker-sea-blue { border-color: var(--darker-sea-blue); }

/* Enhanced button variations */
.btn-sea-blue {
    background: var(--sea-blue);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-sea-blue:hover {
    background: var(--darker-sea-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 133, 162, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline-sea-blue {
    background: transparent;
    color: var(--sea-blue);
    border: 2px solid var(--sea-blue);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-sea-blue:hover {
    background: var(--sea-blue);
    color: white;
    text-decoration: none;
}

/* Enhanced card variations */
.card-sea-blue {
    background: linear-gradient(145deg, rgba(76, 133, 162, 0.1), rgba(59, 104, 127, 0.05));
    border: 1px solid rgba(76, 133, 162, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.card-sea-blue:hover {
    border-color: rgba(76, 133, 162, 0.4);
    box-shadow: 0 12px 40px rgba(76, 133, 162, 0.2);
}

/* Icon styling */
.icon-sea-blue {
    color: var(--sea-blue);
}

.icon-sea-blue:hover {
    color: var(--darker-sea-blue);
}

/* Link styling */
a {
    color: var(--sea-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--darker-sea-blue);
}

/* Form elements */
input, textarea, select {
    background: var(--very-light-gray);
    border: 1px solid var(--lighter-gray);
    color: var(--text-primary);
    border-radius: 6px;
    padding: 10px 12px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--sea-blue);
    box-shadow: 0 0 0 3px rgba(76, 133, 162, 0.1);
}

/* Table styling */
table {
    background: var(--lighter-gray);
    border-radius: 8px;
    overflow: hidden;
}

th {
    background: var(--dark-gray);
    color: var(--text-primary);
    font-weight: 600;
}

td {
    border-bottom: 1px solid var(--very-light-gray);
    color: var(--text-secondary);
}

tr:hover {
    background: rgba(76, 133, 162, 0.1);
}

/* Login Page Dark Theme */
.login-page {
    background: var(--dark-gray) !important;
    min-height: 100vh;
}

.login-page .py-16 {
    background: var(--dark-gray);
}

.login-page .bg-gray-50 {
    background: var(--dark-gray) !important;
}

.login-page .bg-white {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(27, 27, 27, 0.9)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.login-page .text-gray-800 {
    color: var(--text-primary) !important;
}

.login-page .text-gray-600 {
    color: var(--text-secondary) !important;
}

.login-page .text-gray-700 {
    color: var(--text-secondary) !important;
}

.login-page .text-gray-400 {
    color: var(--text-muted) !important;
}

.login-page .border-gray-300 {
    border-color: var(--very-light-gray) !important;
}

.login-page .border-stone-200 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.login-page .bg-slate-50 {
    background: rgba(15, 15, 15, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.login-page .bg-slate-600 {
    background: var(--sea-blue) !important;
}

.login-page .bg-slate-600:hover {
    background: var(--darker-sea-blue) !important;
}

.login-page .text-slate-600 {
    color: var(--sea-blue) !important;
}

.login-page .text-slate-600:hover {
    color: var(--darker-sea-blue) !important;
}

.login-page .border-gray-300:focus {
    border-color: var(--sea-blue) !important;
}

.login-page .focus\:ring-slate-500:focus {
    --tw-ring-color: var(--sea-blue) !important;
}

.login-page .focus\:border-slate-500:focus {
    border-color: var(--sea-blue) !important;
}

.login-page .border-t {
    border-color: var(--very-light-gray) !important;
}

.login-page .border-gray-300 {
    border-color: var(--very-light-gray) !important;
}

.login-page .bg-gray-50:hover {
    background: rgba(76, 133, 162, 0.1) !important;
}

.login-page .bg-white {
    background: rgba(15, 15, 15, 0.8) !important;
}

.login-page .bg-white:hover {
    background: rgba(76, 133, 162, 0.1) !important;
}

.login-page .text-gray-500 {
    color: var(--text-muted) !important;
}

.login-page .text-gray-500:hover {
    color: var(--sea-blue) !important;
}

.login-page .bg-slate-600 {
    background: var(--sea-blue) !important;
}

.login-page .bg-slate-600:hover {
    background: var(--darker-sea-blue) !important;
}

.login-page .focus\:ring-slate-500:focus {
    --tw-ring-color: var(--sea-blue) !important;
}

.login-page .focus\:ring-offset-2 {
    --tw-ring-offset-color: var(--dark-gray) !important;
}

.login-page .bg-red-100 {
    background: rgba(239, 68, 68, 0.1) !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
    color: #fca5a5 !important;
}

.login-page .bg-green-100 {
    background: rgba(34, 197, 94, 0.1) !important;
    border-color: rgba(34, 197, 94, 0.3) !important;
    color: #86efac !important;
}

.login-page .text-red-700 {
    color: #fca5a5 !important;
}

.login-page .text-green-700 {
    color: #86efac !important;
}

.login-page .border-red-400 {
    border-color: rgba(239, 68, 68, 0.3) !important;
}

.login-page .border-green-400 {
    border-color: rgba(34, 197, 94, 0.3) !important;
}

/* Additional login page form styling */
.login-page input[type="email"],
.login-page input[type="password"] {
    background: var(--very-light-gray) !important;
    color: var(--text-primary) !important;
    border-color: var(--very-light-gray) !important;
}

.login-page input[type="email"]:focus,
.login-page input[type="password"]:focus {
    background: rgba(76, 133, 162, 0.1) !important;
    border-color: var(--sea-blue) !important;
    box-shadow: 0 0 0 3px rgba(76, 133, 162, 0.1) !important;
}

.login-page input[type="email"]::placeholder,
.login-page input[type="password"]::placeholder {
    color: var(--text-muted) !important;
}

.login-page input[type="checkbox"] {
    background-color: var(--very-light-gray) !important;
    border-color: var(--very-light-gray) !important;
}

.login-page input[type="checkbox"]:checked {
    background-color: var(--sea-blue) !important;
    border-color: var(--sea-blue) !important;
}

.login-page input[type="checkbox"]:focus {
    border-color: var(--sea-blue) !important;
    box-shadow: 0 0 0 3px rgba(76, 133, 162, 0.1) !important;
}

.login-page .bg-slate-600 {
    background: var(--sea-blue) !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.login-page .bg-slate-600:hover {
    background: var(--darker-sea-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(76, 133, 162, 0.4) !important;
}

.login-page .bg-slate-600:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(76, 133, 162, 0.3) !important;
}

.login-page .border-gray-300 {
    border-color: var(--very-light-gray) !important;
}

.login-page .border-gray-300:focus {
    border-color: var(--sea-blue) !important;
}
