html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f7fafd 0%, #e3f0fa 100%);
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-bar {
    width: 100%;
    background: linear-gradient(
        90deg,
        #b7e1f9 0%,   /* lighter tint */
        #76c4f2 50%,  /* original color */
        #3a81b3 100%  /* darker shade */
    );
    color: #fff;
    box-shadow: 0 2px 12px rgba(40,40,80,0.08);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-brand {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 40px;
    margin-right: 1rem;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.header-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.header-user-info {
    min-width: 140px;
    text-align: right;
    color: #fff;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-shadow: 0 1px 2px rgba(0,0,0,0.12);
}

.header-user-info .logout-btn {
    font-size: 0.95em;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-weight: 600; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.12); 
}

.header-user-info .logout-btn:hover {
    color: #ffd700; 
}

.company-header-logo {
    height: 36px;
    width: auto;
    margin: 0 1rem;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    object-fit: contain;
    max-width: 120px;
}

.logout-wrap {
    font-size: 0.95em;
    margin-top: 2px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 105;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    transition: background-color 0.3s, transform 0.3s;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}
.menu-overlay.open {
    display: block;
    opacity: 1;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -500px;
    width: 250px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0,0,0,0.12);
    z-index: 103;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    transition: right 0.35s cubic-bezier(.77,0,.18,1);
}
.side-menu.open {
    right: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #2563eb;
    align-self: flex-end;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}
.close-btn:hover {
    color: #d32f2f;
}

.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-menu li {
    margin-bottom: 1.2rem;
}
.main-menu li:last-child {
    margin-bottom: 0;
}
.main-menu a, .logout-btn {
    background: none;
    border: none;
    color: #222;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: inherit;
    padding: 0.3em 1em;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    text-align: left;
    display: inline-block;
    text-decoration: none;
}
.main-menu a:hover, .logout-btn:hover {
    color: #2563eb;
    background: none;
    text-decoration: none;
}
.main-menu a.active {
    color: #fff !important;
    background: linear-gradient(90deg, #60aaff 0%, #2563eb 100%);
    border-radius: 6px;
    padding: 0.3em 1em;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(38,99,235,0.08);
    font-weight: 600;
}

main {
    flex: 1 0 auto;
}

.footer-bar {
    width: 100%;
    color: #185a9d;
    text-align: center;
    padding: 1rem 0;
    border-top: none;
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(90deg, #e3f0fa 0%, #b3c9f1 100%);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}
.footer-container::before {
    content: "";
    display: block;
    margin: 0 auto 1rem auto;
    width: 2px;
    height: 2px;
    background: rgba(112, 111, 111, 0.15);
    border-radius: 2px;
}


/*
    The logo and "InfoCloud" are clickable as a single link.
    The underline appears only on hover or focus.
    No inline styles are used.
*/
.header-home-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.header-home-link:hover,
.header-home-link:focus {
    text-decoration: none;
    color: inherit;
}

.main-content {
    margin: 2.5rem 3% 2rem 3%;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(38,99,235,0.07), 0 1.5px 6px rgba(67,206,162,0.06);
    transition: box-shadow 0.2s;
}

.main-content h1 {
    color: #2563eb;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    text-shadow:
        0 2px 8px rgba(38,99,235,0.10),
        0 1px 2px rgba(38,99,235,0.08);
    background: linear-gradient(90deg, #2563eb 10%, #3977be 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* fallback for non-webkit browsers */
    filter: brightness(1.1);
    padding-bottom: 0.3em;
    border-bottom: 2.5px solid #2563eb33;
    border-radius: 2px;
    display: inline-block;
    transition: text-shadow 0.2s, filter 0.2s;
}