* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: #f8f9fa;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        .header {
            background-color: #fff;
            border-bottom: 1px solid #e5e5e5;
            padding: 0;
        }

        .header-top {
            background-color: #f8f9fa;
            padding: 8px 40px 8px 0;
            font-size: 0.85rem;
		margin-top: 3px;
        }

        .header-top-content {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: right;
		float: right;
		margin-top: 14px;
		margin-bottom: 1px;
        }

        .header-top a {
            color: #555656;
            text-decoration: none;
            margin-left: 20px;
		font-family: Arial,Helvetica,sans-serif;
		padding: 0.5rem 0;
		text-underline-offset: 2px;
		font-weight: 700;
		font-size: .9375rem;
		text-decoration: none;
        }

        .header-main {
            padding: 14px 0;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
		margin-top: -20px;
		margin-bottom: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
		width: 200px;
		margin-left: 14px;
		margin-top: 10px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #c41e3a;
            text-decoration: none;
        }

        .search-container {
            display: flex;
            align-items: center;
        }

        .search-box {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 0.9rem;
            width: 280px;
            margin-right: 5px;
        }

        .search-btn {
            background-color: #c41e3a;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 3px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        /* Navigation */
        .nav {
            background-color: #b5121b;
		height: 53px;
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1px;
        }

        .nav-list {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-item {
            position: relative;
        }

        .nav-item a {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            transition: background-color 0.3s;
		font-family: EffraRegular,arial,helvetica,sans-serif;
		font-size: 1.25rem;
        font-weight: 400;
        line-height: 1;
        margin: 0;
        padding: 1rem 20px;
        }

        .nav-item:hover a {
            background-color: #FFFFFF;
		color: #555656;
		text-decoration: underline;
		text-decoration-color: #b5121b;
		text-decoration-thickness: 1px;
		text-underline-offset: 2px;
        }

        /* Hero Image Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('Hero-Image-Outside-Townhouses-1600x800.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 120px 20px;
            text-align: center;
            position: relative;
		box-shadow: 0px 9px 12px #888888;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            margin-bottom: 30px;
        }

        .hero-description {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* Breadcrumb */
        .breadcrumb {
            background-color: #ecf0f1;
            padding: 12px 0;
            font-size: 0.85rem;
        }

        .breadcrumb-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .breadcrumb a {
            color: #c41e3a;
            text-decoration: none;
        }

.loggedInUser {width: 100%; float: left;}
.loggedInUser Button, .loggedInUser Input {float: right; margin-left: 10px;}



/* Style the menu container as a 2-column grid */
.menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    align-items: start;
    width: 100%;
    max-width: 800px;      /* Keep layout clean and constrained */
    margin: 0 auto;        /* Center it within parent */
    box-sizing: border-box;
    margin-bottom: 25px;
    color: #555555;
    font-family: EffraRegular,arial,helvetica,sans-serif;
}

/* Position the back button to span both columns and appear at top */
.menu ul:first-of-type {
    grid-column: 1 / -1;  /* Span both columns */
    grid-row: 2;          /* Position right after the h3 */
    margin-bottom: 20px;  /* Add some spacing */
    text-align: left;     /* Align to left */
}

/* Default: everything else starts in left column */
.menu h3,
.menu h4,
.menu ul:not(:first-of-type) {
    grid-column: 1;
}

/* Move second <h4> and its <ul>s to right column */
.menu h4:nth-of-type(2),
.menu h4:nth-of-type(2) ~ ul {
    grid-column: 2;
}

/* Align content positioning */
.menu h3 { 
    grid-row: 1; 
    grid-column: 1 / -1;  /* Span both columns */
    margin-bottom: 10px;
}

.menu h4:nth-of-type(1) { grid-row: 3; }
.menu h4:nth-of-type(1) + ul { grid-row: 4; }
.menu h4:nth-of-type(1) + ul + ul { grid-row: 5; }
.menu h4:nth-of-type(1) + ul + ul + ul { grid-row: 6; }
.menu h4:nth-of-type(1) + ul + ul + ul + ul { grid-row: 7; }
.menu h4:nth-of-type(1) + ul + ul + ul + ul + ul { grid-row: 8; }

.menu h4:nth-of-type(2) { grid-row: 3; }
.menu h4:nth-of-type(2) + ul { grid-row: 4; }
.menu h4:nth-of-type(2) + ul + ul { grid-row: 5; }
.menu h4:nth-of-type(2) + ul + ul + ul { grid-row: 6; }
.menu h4:nth-of-type(2) + ul + ul + ul + ul { grid-row: 7; }
.menu h4:nth-of-type(2) + ul + ul + ul + ul + ul { grid-row: 8; }

/* Optional: make list items look nicer */
.menu ul {
    padding-left: 1em;
    list-style: none;
}

.menu ul li {width: 100%;}

.menu ul li a {
    color: #FFFFFF;
    text-decoration: none;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
    display: block;
    width: 100%;
}

/* Style the back button */
.menu ul:first-of-type li a {
    color: #616161;
    background: none;  /* Remove any background */
    padding: 0;        /* Remove padding */
    margin: 0;         /* Remove margin */
    border-radius: 0;  /* Remove border radius */
}

/* Style for Current Inventory Reports (red background) */
.menu h4:nth-of-type(1) ~ ul li a:not(h4:nth-of-type(2) ~ ul li a) {
    background-color: #b5121b; /* Red for Current Inventory Reports */
    border-radius: 18px;
    padding: 8px 12px;
    margin: 4px 0;
}

.menu h4:nth-of-type(1) ~ ul li a:not(h4:nth-of-type(2) ~ ul li a):hover {
    box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.1);
}

/* Style for Completed Inventory Reports (grey background) */
.menu h4:nth-of-type(2) ~ ul li a {
    background-color: #616161; /* Grey background */
    border-radius: 18px;
    padding: 8px 12px;
    margin: 4px 0;
}

.menu h4:nth-of-type(2) ~ ul li a:hover {
    box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.1);
}


/* Responsive: stack on small screens */
@media (max-width: 600px) {
    .menu {
        grid-template-columns: 1fr;
    }

.menu ul {width: 90%;}

    .menu h3,
    .menu h4,
    .menu ul {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}

.menu h3 {
    font-size: 1.4rem;
    margin-bottom: 0.1em;
}

.menu h4 {
    font-size: 1.2rem;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
}





        /* Main Content */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .page-header {
            margin-bottom: 40px;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .page-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            font-weight: 400;
        }

        /* Content Card */
        .content-card, {
            background-color: white;
            border-radius: 6px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .card-header, #ctl00_content_headerPanel {
            background-color: #b5121b;
            color: white;
            padding: 20px 25px;
            border-bottom: 1px solid #a91b2e;
            border-radius: 6px 6px 0 0;
            box-shadow: 0px 9px 10px 0px rgba(0,0,0,0.8);
            overflow: hidden;
            margin-bottom: 5px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .card-title, #ctl00_content_headerPanel h3 {
            font-size: 1.3rem;
            font-weight: 500;
            margin: 0;
        }

        .card-content {
            padding: 25px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .inventory-description, .card-content p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
            font-size: 0.95rem;
        }
        
        .card-content iframe {
            display: block;
            margin: 0px auto;
            width: 100%;
            }

        /* Form Sections */
        .form-section {
            background-color: white;
            border-radius: 6px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.12);
            border: 1px solid #e1e8ed;
        }

        .section-header {
            background-color: #34495e;
            color: white;
            padding: 15px 20px;
            font-weight: 500;
            font-size: 1rem;
            border-bottom: 1px solid #2c3e50;
        }

        .section-content {
            padding: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.95rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: #c41e3a;
            box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
        }

        /* Room Items */
        .room-item {
            background-color: #c41e3a;
            color: white;
            padding: 18px 20px;
            margin-bottom: 12px;
            border-radius: 4px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .room-item:hover {
            background-color: #a91b2e;
        }

        .room-item-text {
            font-weight: 500;
            font-size: 0.95rem;
        }

        .room-item-status {
            font-size: 0.85rem;
            opacity: 0.9;
            font-style: italic;
        }

        /* Buttons */
        .inventory-buttons {
            height: auto;
            margin-bottom: 25px;
        }
        
        .button-container {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            gap: 20px;
        }

        .btn {
            padding: 15px 35px;
            border: none;
            border-radius: 4px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            flex: 1;
            max-width: 200px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-secondary {
            background-color: #95a5a6;
            color: white;
        }

        .btn-secondary:hover {
            background-color: #7f8c8d;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .btn-primary {
            background-color: #c41e3a;
            color: white;
        }

        .btn-primary:hover {
            background-color: #a91b2e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        /* Footer */
        .footer {
            background-color: #555656;
            color: white;
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .footer-text {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {

		.header-main {padding-bottom: 3px;}
		.header-top {display: none;}
		
		.logo {margin-left: -2px;
			width: 156px;
			margin-top: 15px;
		}

		.nav {
			display: none;
		}
		
            .hero {
                padding: 80px 20px;
                background-attachment: scroll;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .header-content {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }

            .search-container {
                justify-content: center;
            }

            .search-box {
                width: 100%;
                max-width: 300px;
            }

            .nav-list {
                justify-content: center;
                flex-wrap: wrap;
            }

            .nav-item a {
                padding: 15px 20px;
                font-size: 0.9rem;
            }

            .page-title {
                font-size: 2rem;
            }

            .container {
                padding: 30px 15px;
            }

            .card-content,
            .section-content {
                padding: 20px 15px;
            }

            .button-container {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                max-width: none;
                padding: 15px 25px;
            }
        }

        @media (max-width: 480px) {

            .hero {
                padding: 60px 15px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .card-header,
            .section-header {
                padding: 15px;
            }

            .card-content,
            .section-content {
                padding: 15px;
            }

            .room-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 15px;
            }

            .nav-item a {
                padding: 12px 15px;
            }
        }