/* _content/HimServiceFrontend/Components/Pages/Admin/AdminList.razor.rz.scp.css */
:root[b-umbx0f9owe] {
    --primary-color: #2563eb;
    --danger-color: #dc2626;
    --background-color: #f8fafc;
    --card-color: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
}

*[b-umbx0f9owe] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body[b-umbx0f9owe] {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    padding: 20px;
}

.container[b-umbx0f9owe] {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header[b-umbx0f9owe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .header h1[b-umbx0f9owe] {
        font-size: 24px;
        font-weight: 500;
    }

.admin-list[b-umbx0f9owe] {
    background-color: var(--card-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.admin-item[b-umbx0f9owe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s;
}

    .admin-item:last-child[b-umbx0f9owe] {
        border-bottom: none;
    }

    .admin-item:hover[b-umbx0f9owe] {
        background-color: #f8fafc;
    }

.admin-info[b-umbx0f9owe] {
    display: flex;
    align-items: center;
}

.admin-name[b-umbx0f9owe] {
    font-weight: 500;
    margin-left: 12px;
}

.admin-role[b-umbx0f9owe] {
    font-size: 12px;
    color: var(--text-secondary);
    margin-left: 8px;
    padding: 2px 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
}

.delete-btn[b-umbx0f9owe] {
    background-color: transparent;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .delete-btn:hover[b-umbx0f9owe] {
        background-color: #fee2e2;
    }

.add-admin-btn[b-umbx0f9owe] {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
}

    .add-admin-btn:hover[b-umbx0f9owe] {
        background-color: #1d4ed8;
    }

    .add-admin-btn i[b-umbx0f9owe] {
        margin-right: 8px;
    }

@media (max-width: 600px) {
    .admin-item[b-umbx0f9owe] {
        padding: 12px 16px;
    }

    .admin-name[b-umbx0f9owe] {
        font-size: 14px;
    }
}
/* _content/HimServiceFrontend/Components/Pages/Admin/AdminLogin.razor.rz.scp.css */
:root[b-88yvlytphh] {
    --primary-color: #2563eb;
    --danger-color: #dc2626;
    --success-color: #16a34a;
}

*[b-88yvlytphh] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body[b-88yvlytphh] {
    font-family: 'Roboto', sans-serif;
    background-color: #f8fafc;
    min-height: 100vh;
    position: relative;
    padding: 20px;
}

.auth-container[b-88yvlytphh] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.auth-header[b-88yvlytphh] {
    text-align: center;
    margin-bottom: 32px;
}

    .auth-header h1[b-88yvlytphh] {
        color: #1e293b;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .auth-header p[b-88yvlytphh] {
        color: #64748b;
        font-size: 14px;
    }

.form-group[b-88yvlytphh] {
    margin-bottom: 20px;
    position: relative;
}

.auth-form label[b-88yvlytphh] {
    display: block;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.input-wrapper[b-88yvlytphh] {
    position: relative;
}

.auth-form input[b-88yvlytphh] {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    background-color: #f8fafc;
}

    .auth-form input:focus[b-88yvlytphh] {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

.password-toggle[b-88yvlytphh] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #64748b;
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-group[b-88yvlytphh] {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

    .checkbox-group input[b-88yvlytphh] {
        width: auto;
        margin-right: 12px;
    }

    .checkbox-group label[b-88yvlytphh] {
        margin-bottom: 0;
        color: #334155;
        font-size: 14px;
    }

.btn[b-88yvlytphh] {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary[b-88yvlytphh] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-88yvlytphh] {
        background-color: #1d4ed8;
    }

.auth-footer[b-88yvlytphh] {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #64748b;
}

    .auth-footer a[b-88yvlytphh] {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

        .auth-footer a:hover[b-88yvlytphh] {
            text-decoration: underline;
        }

@media (max-width: 480px) {
    .auth-container[b-88yvlytphh] {
        padding: 30px 20px;
    }

    body[b-88yvlytphh] {
        padding: 10px;
    }
}
/* _content/HimServiceFrontend/Components/Pages/Admin/AdminRegistration.razor.rz.scp.css */
:root[b-akgb637hag] {
    --primary-color: #2563eb;
    --danger-color: #dc2626;
    --success-color: #16a34a;
}

*[b-akgb637hag] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body[b-akgb637hag] {
    font-family: 'Roboto', sans-serif;
    background-color: #f8fafc;
    min-height: 100vh;
    position: relative;
    padding: 20px;
}

.auth-container[b-akgb637hag] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.auth-header[b-akgb637hag] {
    text-align: center;
    margin-bottom: 32px;
}

    .auth-header h1[b-akgb637hag] {
        color: #1e293b;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .auth-header p[b-akgb637hag] {
        color: #64748b;
        font-size: 14px;
    }

.form-group[b-akgb637hag] {
    margin-bottom: 20px;
    position: relative;
}

.auth-form label[b-akgb637hag] {
    display: block;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.input-wrapper[b-akgb637hag] {
    position: relative;
}

.auth-form input[b-akgb637hag] {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    background-color: #f8fafc;
}

    .auth-form input:focus[b-akgb637hag] {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

.password-toggle[b-akgb637hag] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #64748b;
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-group[b-akgb637hag] {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

    .checkbox-group input[b-akgb637hag] {
        width: auto;
        margin-right: 12px;
    }

    .checkbox-group label[b-akgb637hag] {
        margin-bottom: 0;
        color: #334155;
        font-size: 14px;
    }

.btn[b-akgb637hag] {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary[b-akgb637hag] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-akgb637hag] {
        background-color: #1d4ed8;
    }

.auth-footer[b-akgb637hag] {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #64748b;
}

    .auth-footer a[b-akgb637hag] {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

        .auth-footer a:hover[b-akgb637hag] {
            text-decoration: underline;
        }

@media (max-width: 480px) {
    .auth-container[b-akgb637hag] {
        padding: 30px 20px;
    }

    body[b-akgb637hag] {
        padding: 10px;
    }
}
/* _content/HimServiceFrontend/Components/Pages/NavigationMenu.razor.rz.scp.css */
/* Global styles */
:root[b-9lusaua4y5] {
    --primary-color: #2a7d2e;
    --text-color: #333;
    --dark-color: #1a1a1a;
    --background-color: #f9f9f9;
}

.navbar[b-9lusaua4y5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0; /* Default padding for desktop */
    transition: all 0.3s ease;
}

.navbar-container[b-9lusaua4y5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo[b-9lusaua4y5] {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img[b-9lusaua4y5] {
    height: clamp(30px, 5vw, 40px);
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text[b-9lusaua4y5] {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-color);
}

.logo:hover .logo-img[b-9lusaua4y5] {
    transform: scale(1.05);
}

.nav-menu[b-9lusaua4y5] {
    display: flex;
    align-items: center;
}

.nav-links[b-9lusaua4y5] {
    display: flex;
    list-style: none;
    gap: 20px;
}

    .nav-links li[b-9lusaua4y5] {
        display: flex;
        align-items: center;
    }

    .nav-links a[b-9lusaua4y5] {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text-color);
        text-decoration: none;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-links a:hover[b-9lusaua4y5] {
            color: var(--primary-color);
        }

        .nav-links a i[b-9lusaua4y5] {
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

.nav-link.active[b-9lusaua4y5] {
    color: var(--primary-color);
}

    .nav-link.active i[b-9lusaua4y5] {
        color: var(--primary-color);
    }

.hamburger[b-9lusaua4y5] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

    .hamburger span[b-9lusaua4y5] {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1)[b-9lusaua4y5] {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2)[b-9lusaua4y5] {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3)[b-9lusaua4y5] {
        transform: rotate(-45deg) translate(7px, -7px);
    }

/* Mobile styles */
@media (max-width: 768px) {
    .navbar[b-9lusaua4y5] {
        padding: 0; /* Remove all padding on mobile */
    }

    .navbar-container[b-9lusaua4y5] {
        padding: 0;
        width: 100%;
        left: 0;
        right: 0;
    }

    .hamburger[b-9lusaua4y5] {
        display: block;
    }

    .nav-menu[b-9lusaua4y5] {
        display: none;
        width: 100%;
        position: absolute;
        top: var(--navbar-height, 60px); /* Fallback value if JS fails */
        left: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 999;
    }

        .nav-menu.active[b-9lusaua4y5] {
            display: block;
        }

    .nav-links[b-9lusaua4y5] {
        flex-direction: column;
        gap: 15px;
    }

        .nav-links li[b-9lusaua4y5] {
            margin: 0;
        }

        .nav-links a[b-9lusaua4y5] {
            font-size: clamp(1rem, 3vw, 1.2rem);
            padding: 10px 0;
            width: 100%;
            justify-content: flex-start;
        }

    .logo[b-9lusaua4y5] {
        margin: 0; /* Remove any residual margins */
    }

    .logo-img[b-9lusaua4y5] {
        height: clamp(25px, 4vw, 30px);
    }

    .logo-text[b-9lusaua4y5] {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .hamburger[b-9lusaua4y5] {
        margin: 0; /* Remove any residual margins */
    }

    body.nav-open[b-9lusaua4y5] {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .navbar-container[b-9lusaua4y5] {
        padding: 0; /* Ensure no padding, relying on full width */
    }

    .nav-links a[b-9lusaua4y5] {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
}
/* _content/HimServiceFrontend/Components/Pages/NotificationMenu.razor.rz.scp.css */
.notification[b-baaarc62ur] {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: top 0.5s ease-in-out;
    width: 300px;
    max-width: 90%;
}

    .notification.active[b-baaarc62ur] {
        top: 20px;
    }

.notification__icon[b-baaarc62ur] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.notification__text[b-baaarc62ur] {
    flex-grow: 1;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
}
/* _content/HimServiceFrontend/Components/Pages/User/Home.razor.rz.scp.css */
/* Global styles */
:root[b-ueo867oh5a] {
    --primary-color: #2a7d2e;
    --text-color: #333;
    --dark-color: #1a1a1a;
    --background-color: #a9b4c2; /* Changed to a medium grayish-blue for better contrast */
    --navbar-height: 60px; /* Fallback value, overridden by JS */
}

*[b-ueo867oh5a] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-ueo867oh5a] {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color); /* Apply new grayish background to the entire site */
}

.container[b-ueo867oh5a] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.fullscreen-section[b-ueo867oh5a] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--navbar-height, 60px) + 20px) 0 40px; /* Use fallback value if JS fails */
}

.btn[b-ueo867oh5a] {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Increased from 1rem */
}

    .btn:hover[b-ueo867oh5a] {
        background: darken(var(--primary-color), 10%);
    }

/* Hero section */
.hero[b-ueo867oh5a] {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), #e0e0e0 url('../img/hero-bg.jpg') no-repeat center center/cover; /* Gray background */
    color: #ffffff; /* Default text color set to white for hero section */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .hero h1[b-ueo867oh5a] {
        font-size: clamp(1.9rem, 6vw, 2.4rem); /* Increased from 2rem */
        margin-bottom: 15px;
        line-height: 1.2;
        color: var(--primary-color); /* Remains green for "ОАО Гомельхимсервис" */
    }

    .hero h2[b-ueo867oh5a] {
        font-size: clamp(1.5rem, 4vw, 1.9rem); /* Increased from 1.5rem */
        margin-bottom: 20px;
        color: #ffffff; /* White, inherited from .hero */
    }

.subtitle[b-ueo867oh5a] {
    font-size: clamp(1rem, 3vw, 1.2rem); /* Increased from 1rem */
    max-width: 90%;
    margin: 0 auto 30px;
    color: #ffffff; /* White, inherited from .hero */
}

.scroll-down[b-ueo867oh5a] {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce-b-ueo867oh5a 2s infinite;
}

    .scroll-down span[b-ueo867oh5a] {
        display: block;
        width: 20px;
        height: 20px;
        border-bottom: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
        margin: -10px;
    }

/* Services section */
.services[b-ueo867oh5a] {
    background-color: #f9f9f9;
    text-align: center;
}

    .services h2[b-ueo867oh5a] {
        font-size: clamp(1.8rem, 5vw, 2.2rem); /* Increased from 1.8rem */
        margin-bottom: 40px; /* Standardized spacing */
    }

.services-grid[b-ueo867oh5a] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card[b-ueo867oh5a] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .service-card:hover[b-ueo867oh5a] {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.service-img[b-ueo867oh5a] {
    height: 100px;
    width: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.service-card h3[b-ueo867oh5a] {
    font-size: clamp(1.2rem, 3vw, 1.5rem); /* Increased from 1.2rem */
    margin-bottom: 10px;
}

.service-card p[b-ueo867oh5a] {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Increased from 0.9rem */
}

/* Contacts section */
.contacts[b-ueo867oh5a] {
    background-color: #f9f9f9;
}

    .contacts h2[b-ueo867oh5a] {
        font-size: clamp(1.8rem, 5vw, 2.2rem); /* Increased from 1.8rem */
        text-align: center;
        margin-bottom: 40px; /* Standardized spacing */
    }

.contacts-grid[b-ueo867oh5a] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-card[b-ueo867oh5a] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .contact-card:hover[b-ueo867oh5a] {
        transform: translateY(-5px);
    }

.contact-position[b-ueo867oh5a] {
    font-weight: 600;
    color: var(--primary-color);
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Increased from 1rem */
    margin-bottom: 10px;
}

.contact-name[b-ueo867oh5a] {
    font-weight: 500;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Increased from 0.9rem */
    margin-bottom: 12px;
}

.contact-phones[b-ueo867oh5a] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .contact-phones a[b-ueo867oh5a] {
        color: var(--text-color);
        text-decoration: none;
        font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Increased from 0.9rem */
        transition: color 0.3s;
        display: flex;
        align-items: center;
    }

        .contact-phones a[b-ueo867oh5a]:before {
            content: "📞";
            margin-right: 8px;
        }

        .contact-phones a:hover[b-ueo867oh5a] {
            color: var(--primary-color);
        }

/* Footer */
footer[b-ueo867oh5a] {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 20px 0;
}

    footer p[b-ueo867oh5a] {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Increased from 0.9rem */
    }

/* Animations */
@keyframes bounce-b-ueo867oh5a {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .container[b-ueo867oh5a] {
        padding: 0 15px;
    }

    .fullscreen-section[b-ueo867oh5a] {
        min-height: auto;
        padding: calc(var(--navbar-height, 60px) + 15px) 0 30px; /* Adjusted for dynamic navbar with fallback */
    }

    .hero[b-ueo867oh5a] {
        padding: 60px 0;
    }

        .hero h1[b-ueo867oh5a] {
            font-size: clamp(1.9rem, 6vw, 2.4rem); /* Min: 1.9rem, Preferred: 6vw, Max: 2.4rem */
        }

        .hero h2[b-ueo867oh5a] {
            font-size: clamp(1.5rem, 4vw, 1.9rem); /* Min: 1.5rem, Preferred: 4vw, Max: 1.9rem */
        }

    .subtitle[b-ueo867oh5a] {
        font-size: clamp(1rem, 3vw, 1.2rem); /* Min: 1rem, Preferred: 3vw, Max: 1.2rem */
    }

    .services h2[b-ueo867oh5a],
    .contacts h2[b-ueo867oh5a] {
        font-size: clamp(1.8rem, 5vw, 2.2rem); /* Min: 1.8rem, Preferred: 5vw, Max: 2.2rem */
        margin-bottom: clamp(30px, 5vw, 35px); /* Consistent responsive spacing */
    }

    .services-grid[b-ueo867oh5a] {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card[b-ueo867oh5a] {
        padding: 15px;
    }

    .service-img[b-ueo867oh5a] {
        height: 80px;
    }

    .service-card h3[b-ueo867oh5a] {
        font-size: clamp(1.2rem, 3vw, 1.5rem); /* Min: 1.2rem, Preferred: 3vw, Max: 1.5rem */
    }

    .service-card p[b-ueo867oh5a] {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Min: 0.9rem, Preferred: 2.5vw, Max: 1.1rem */
    }

    .contacts-grid[b-ueo867oh5a] {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card[b-ueo867oh5a] {
        padding: 15px;
    }

    .contact-position[b-ueo867oh5a] {
        font-size: clamp(1rem, 2.5vw, 1.2rem); /* Min: 1rem, Preferred: 2.5vw, Max: 1.2rem */
    }

    .contact-name[b-ueo867oh5a] {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Min: 0.9rem, Preferred: 2.5vw, Max: 1.1rem */
    }

    .contact-phones a[b-ueo867oh5a] {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Min: 0.9rem, Preferred: 2.5vw, Max: 1.1rem */
    }

    .footer p[b-ueo867oh5a] {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Min: 0.9rem, Preferred: 2.5vw, Max: 1.1rem */
    }
}

@media (max-width: 480px) {
    .hero h1[b-ueo867oh5a] {
        font-size: clamp(1.5rem, 4.5vw, 2rem); /* Adjusted for smaller screens */
    }

    .hero h2[b-ueo867oh5a] {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem); /* Adjusted for smaller screens */
    }

    .btn[b-ueo867oh5a] {
        padding: 10px 20px;
        font-size: clamp(0.9rem, 2.5vw, 1.2rem); /* Adjusted for smaller screens */
    }

    .service-card p[b-ueo867oh5a],
    .contact-card p[b-ueo867oh5a] {
        font-size: clamp(0.8rem, 2.5vw, 1rem); /* Adjusted for smaller screens */
    }
}
/* _content/HimServiceFrontend/Components/Pages/User/News.razor.rz.scp.css */
.news-item[b-agu1cgpf7u] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.news-header[b-agu1cgpf7u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .news-header h2[b-agu1cgpf7u] {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin: 0;
    }

.news-date[b-agu1cgpf7u] {
    color: var(--text-light);
    font-size: 0.9rem;
}

.news-content p[b-agu1cgpf7u] {
    line-height: 1.6;
}

.news-footer[b-agu1cgpf7u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.download-btn[b-agu1cgpf7u] {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

    .download-btn:hover[b-agu1cgpf7u] {
        color: var(--secondary-color);
    }

    .download-btn i[b-agu1cgpf7u] {
        margin-right: 8px;
    }

.file-upload[b-agu1cgpf7u] {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .file-upload label[b-agu1cgpf7u] {
        cursor: pointer;
        color: var(--primary-color);
        white-space: nowrap;
    }

    .file-upload input[type="file"][b-agu1cgpf7u] {
        display: none;
    }

#file-name[b-agu1cgpf7u] {
    color: var(--text-light);
    font-size: 0.9rem;
}

.remove-file-btn[b-agu1cgpf7u] {
    background: #ffebee;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #f44336;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.download-btn[b-agu1cgpf7u] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

    .download-btn:hover[b-agu1cgpf7u] {
        background: #c8e6c9;
        transform: translateY(-2px);
    }

    .download-btn i[b-agu1cgpf7u] {
        font-size: 16px;
    }
/* _content/HimServiceFrontend/Components/Pages/User/Vacancies.razor.rz.scp.css */
.vacancy-item[b-whprq7wnyn] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #d32f2f;
    transition: all 0.3s ease;
}

    .vacancy-item:hover[b-whprq7wnyn] {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(211, 47, 47, 0.1);
    }

.vacancy-header h3[b-whprq7wnyn] {
    color: #d32f2f;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.toggle-description[b-whprq7wnyn] {
    cursor: pointer;
    background: #f0f0f0;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

    .toggle-description:hover[b-whprq7wnyn] {
        background: #e0e0e0;
    }

.vacancy-content[b-whprq7wnyn] {
    overflow: hidden;
}

    .vacancy-content p[b-whprq7wnyn] {
        margin: 0 0 10px 0;
        line-height: 1.5;
    }

.vacancy-full[b-whprq7wnyn] {
    display: none;
    opacity: 0;
    height: 0;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px dashed #eee;
    transition: opacity 300ms ease-in-out;
}

    .vacancy-full p[b-whprq7wnyn] {
        margin: 0;
        padding: 5px 0;
        line-height: 1.5;
        white-space: pre-line;
        word-wrap: break-word;
    }

.vacancy-short[b-whprq7wnyn] {
    display: block;
}


.full-description-content[b-whprq7wnyn] {
    padding: 10px 0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}
