﻿body {
}
/* Wrapper layout */
#wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
html, body {
    height: 100%;
    margin: 0;
}
.menu-clean {
    background-color: #1A1A2E;
    padding: 10px 0;
    box-shadow: none !important;
    border: none !important;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1; /* This forces the footer to the bottom */
}

footer {
    height: 100px; /* Or your actual footer height */
    background-color: #f2f2f2;
}
.MainContentWrapper {
    min-height: calc(100vh - 100px); /* 100px is your footer height, adjust as needed */
}

/* Navigation menu styling */
.dxeMenu_Glass {
    background-color: #5585D7;
    border-radius: 4px;
    padding: 10px;
}

.dxeMenuItem_Glass {
    color: white;
    font-weight: bold;
    font-family: "Segoe UI", sans-serif;
}

    .dxeMenuItem_Glass:hover {
        background-color: #3366CC;
    }

/* Logo tweaks */
#LogoImage {
    padding: 10px;
    vertical-align: middle;
}
.footer-panel {
    background-color: #5585D7 !important;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.25) !important;
}
/* Navigation bar container */
#MainMenu.dxeMenu_Glass {
    background-color: #5585D7;
    padding: 8px;
    border-radius: 6px;
}

/* Menu items */
.dxeMenuItem_Glass {
    color: white;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    padding: 6px 14px;
}

    /* Hover effect */
    .dxeMenuItem_Glass:hover {
        background-color: #3a6bc4;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
#MainMenu {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}
#MainMenu {
    position: sticky;
    top: 0;
    background-color: #5585D7;
}
.primary-button {
    background-color: #5585D7;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 20px;
    width: 180px;
    font-family: "Segoe UI", sans-serif;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .primary-button:hover {
        background-color: #3a6bc4;
    }
.ceedButton td.dxb {
    background-color: #FF3300 !important;
    color: white !important;
    font-weight: bold;
    font-size: 16px !important;
    border: 1px solid #AA2200 !important;
    border-radius: 4px !important;
    padding: 10px 20px;
    text-align: center;
}

.ceedButton:hover td.dxb {
    background-color: #CC2900 !important;
    color: white !important;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100px; /* match the height used in the calculation above */
}
.category-block {
    width: 100%;
    padding: 12px 0;
}

.category-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 24px;
    row-gap: 6px;
    align-items: center;
    width: 100%;
    padding: 12px 0;
}

.category-title {
    grid-column: 1 / -1;
    font-size: 1.5em;
    font-weight: bold;
    color: #339966;
}

.description-text {
    font-size: medium;
    color: #333;
}

.primary-button {
    min-width: 180px;
    justify-self: end;
}
.contact-image {
    margin-left: 20px;
    float: right;
    border-radius: 8px;
}