* {
            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;
		}

        /* Header */
        .header {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            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;
        }
		sup {
			font-size: 8pt;
		}

        .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;
        }

        

        /* Main Layout - Modified for Interior Page */
        .main-layout {
            margin-top: 70px;
            display: grid;
            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 - Expanded */
        .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: 3rem;
            text-align: center;
            color: #64748b;
            font-style: italic;
        }

        /* Sidebar Sections */
        .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;
        }

        /* 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;
        }

        	
		
