* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(180deg, #1e40af 0%, #60a5fa 50%, #f8fafc 100%);
            background-attachment: fixed;
            color: #334155;
            min-height: 100vh;
        }

		footer {
			/* background-color: gainsboro; */
			padding-bottom: 15px;
			margin-bottom:15px;
		}
		
		img {
			border-radius: 16px;
		}
        sup {font-size:8pt;
        }

        a {
            text-decoration: none;
            text-decoration-color: #cccccc;
        }
        /*a:hover {
            text-decoration: underline;
            
        }*/
   

        /* Header */
        .header {
          /*  background: linear-gradient(to right, #1f4f2f 0%, #059669 100%); */    /* green gradient */
			background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); /* blue gradient */
            color: white;
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            gap: 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fbbf24;
        }
		
		.subtitle {
		  display: block;
		  font-size: 0.4em; /* or whatever size you want */
		  font-weight: normal;
		  text-align:center;
		}

        /* ZIP Code Search */
		.zip-search {
			display: flex;
			align-items: center;
			gap: 0.5rem;
			background: rgba(255,255,255,0.1);
			padding: 0.5rem;
			border-radius: 6px;
			visibility: hidden;
		}

        .zip-search label {
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .zip-search input {
            padding: 0.4rem 0.6rem;
            border: none;
            border-radius: 4px;
            width: 100px;
            font-size: 0.9rem;
        }

        .zip-go-btn {
            background: #fbbf24;
            color: #1e40af;
            border: none;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .zip-go-btn:hover {
            background: #f59e0b;
        }

        /* Navigation */
        .nav-container {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav {
            display: flex;
            gap: 2rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
            font-weight: 500;
            cursor: pointer;
            font-size: 1.2rem;
        }

        .nav-link:hover {
            background: rgba(255,255,255,0.1);
            color: #fbbf24;
        }

        /* Dropdown Menus */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            min-width: 250px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 1001;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 0.75rem 1rem;
            color: #475569;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.2s;
            position: relative;
        }

        .dropdown-item:hover {
            background: #f1f5f9;
            color: #1e40af;
            padding-left: 1.5rem;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        /* Third level dropdown */
        .dropdown-item.has-submenu:after {
            content: '';
            position: absolute;
            right: 1rem;
            font-size: 0.8rem;
        }

        .submenu {
            position: absolute;
            top: 0;
            left: 100%;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s;
        }

        .dropdown-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
		
		/* buttons*/
		        .btn {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background-color: #339933;
			/*linear-gradient(180deg, #1e40af 0%, #60a5fa 50%, #f8fafc 100%);*/
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: #00e6b8;
			color: #1e40af;
            transform: translateY(-1px);
        }

        .btn-primary:disabled {
            background-color: #9ca3af;
            color: #6b7280;
            cursor: not-allowed;
            transform: none;
        }

        /* User Controls */
        .user-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .user-toggle {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .user-toggle:hover {
            background: rgba(255,255,255,0.2);
        }

        /* Main Layout */
.main-layout {
	margin-top: 70px;
	display: grid;
	/* grid-template-columns: 250px 1fr 300px; */ /* changed to 2 col layout*/
	grid-template-columns: 250px 1fr;
	gap: 2rem;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 2rem;
	min-height: calc(100vh - 70px);
}

        /* Left Column Layout */
        .left-column {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Control Box */
        .control-box {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            height: fit-content;
            border-left: 4px solid #fbbf24;
        }

        .control-box h3 {
            color: #1e40af;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .control-menu {
            list-style: none;
        }

        .control-menu li {
            margin-bottom: 0.5rem;
        }

        .control-menu a {
            color: #475569;
            text-decoration: none;
            padding: 0.5rem 0;
            display: block;
            transition: all 0.2s;
            border-radius: 4px;
            padding-left: 0.5rem;
        }

        .control-menu a:hover {
            color: #1e40af;
            background: #f1f5f9;
            padding-left: 1rem;
        }

        .notification-badge {
            background: #ef4444;
            color: white;
            border-radius: 50%;
            padding: 0.2rem 0.5rem;
            font-size: 0.8rem;
            margin-left: 0.5rem;
        }

        /* Content Area */
        .content-area {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .content-header {
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }

        .content-header h1 {
            color: #1e40af;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .content-placeholder {
            background: #f8fafc;
            border: 2px dashed #cbd5e1;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            color: #64748b;
            font-style: italic;
        }
		
		/* main content */
		.mainContent {
            max-width: 750px;
            border: 2px dashed #666;
            padding: 15px;
            font-family: Arial, sans-serif;
        }
        
        .content-above {
            text-align: left;
            margin-bottom: 15px;
        }
        
        .boxes-container {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .memBox, .hostBox {
            flex: 1;
            border: 2px solid #7bb3d9;
            padding: 7px;
            text-align: left;
            background-color: #99ccff;
			border-radius: 12px;
        }
        
        .content-below {
            text-align: left;
        }
        
        /* Demo styling for visibility */
        .demo-content {
            margin: 5px 0;
            line-height: 1.4;
        }
		

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .sidebar-section {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .sidebar-section h4 {
            color: #1e40af;
            margin-bottom: 1rem;
            font-size: 1rem;
            border-bottom: 2px solid #fbbf24;
            padding-bottom: 0.5rem;
        }

        /* Featured Host Card */
        .featured-host {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .featured-host:hover {
            border-color: #1e40af;
            box-shadow: 0 4px 10px rgba(30,64,175,0.1);
        }

        .host-image-placeholder {
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            height: 80px;
            border-radius: 6px;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-size: 0.9rem;
        }

        .host-name {
            font-weight: 600;
            color: #1e40af;
            font-size: 0.95rem;
        }

        .host-type {
            color: #64748b;
            font-size: 0.85rem;
        }

        /* Ad Placeholder */
        .ad-placeholder {
            background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
            height: 200px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #92400e;
            font-weight: 600;
            text-align: center;
        }

        /* Calendar */
        .calendar-event {
            background: #f1f5f9;
            padding: 0.75rem;
            border-radius: 6px;
            margin-bottom: 0.5rem;
            border-left: 3px solid #1e40af;
        }

        .event-date {
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 0.25rem;
        }

        .event-title {
            font-weight: 600;
            color: #1e40af;
            font-size: 0.9rem;
        }

        /* User State Indicator */
        .user-state {
            font-size: 0.8rem;
            color: #fbbf24;
            margin-left: 0.5rem;
        }

        /* Hide/Show based on user type */
        .user-content {
            display: none;
        }

        .user-content.active {
            display: block;
        }

        
		
		/* image rotation in content */
		.image-rotator {
		  position: relative;
		  width: 300px;
		  height: 200px;
		  float:left;
		  margin-right:10px;
		  margin-bottom:10px;
		}

		.image-rotator img {
		  position: absolute;
		  width: 100%;
		  height: 100%;
		  object-fit: cover;
		  opacity: 0;
		  transition: opacity 0.5s ease-in-out;
		 
		}

		.image-rotator img.active {
		  opacity: 1;
		}

