        :root {
            --primary: #B00020;
            --secondary: #03dac6;
            --background: #f5f5f5;
            --surface: #ffffff;
            --on-surface: rgba(0, 0, 0, 0.87);
            --drawer-width: 280px;
            --shadow-1: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
            --shadow-4: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
            --shadow-8: 0 5px 5px -3px rgba(0,0,0,.2), 0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12);
        }


        * { box-sizing: border-box; }
        body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
            background-color: var(--background);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- NAVIGATION DRAWER --- */
        .aba-navigation-drawer {
            width: var(--drawer-width);
            height: 100vh;
            background: var(--surface);
            position: fixed;
            left: calc(var(--drawer-width) * -1); 
            top: 0;
            z-index: 2000;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-8);
            display: flex;
            flex-direction: column;
        }
        .aba-navigation-drawer--active { transform: translateX(var(--drawer-width)); }

        @media (min-width: 1025px) {
            #menuToggle, .aba-navigation-drawer, .aba-overlay { display: none !important; }
        }

        .aba-drawer-header {
            background-color: var(--primary);
            padding: 2.5rem 1rem 1rem 1rem;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
	.aba-drawer-header-largerscreen {
            background-color: var(--primary);
            padding: 1rem 1rem 1rem 1rem;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .aba-drawer-avatar {
            width: 4rem; height: 4rem; border-radius: 50%;
            background: white; margin-bottom: 0.75rem;
            border: 2px solid rgba(255,255,255,0.3); overflow: hidden;
        }
        .aba-drawer-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .aba-drawer-name { font-weight: 500; font-size: 1rem; margin-bottom: 0.125rem; }
        .aba-drawer-email { font-size: 0.875rem; opacity: 0.8; }
        .aba-drawer-menu { padding: 0.5rem 0; overflow-y: auto; flex-grow: 1; }
        .aba-drawer-divider { height: 1px; background: rgba(0,0,0,0.12); margin: 0.5rem 0; }

        .aba-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.5);
            visibility: hidden; opacity: 0; transition: opacity 0.3s; z-index: 1500;
        }
        .aba-overlay--active { visibility: visible; opacity: 1; }

        .aba-main { flex-grow: 1; width: 100%; display: flex; flex-direction: column; }
        .aba-toolbar {
            background: var(--primary); color: white; height: 3.7rem;
            display: flex; align-items: center; padding: 0rem 0rem 0rem 0rem;
            box-shadow: var(--shadow-4); position: sticky; top: 0; z-index: 1000;
        }
        .aba-toolbar-spacer { flex-grow: 1; }
        .aba-logo { 
			display: flex; 
			align-items: center; 
			height: 100%; 
			text-decoration: none; 
			margin-left: 1rem; 
			}
        .aba-logo-img { max-height: 1.78rem; width: auto; display: block; }
        .aba-btn-post {
            	background: var(--background); 
				color: var(--primary); 
				border: none;
				border-radius: 4px;
            	padding: 0.6rem 0.5rem 0.5rem 0.5rem; 
				height: 2.25rem; 
				font-weight: 700; 
				text-transform: uppercase; 
				cursor: pointer;
				margin-right: 0rem; 
				box-shadow: var(--shadow-1); 
				font-size: 0.85rem;
        }

        .aba-profile-container { position: relative; }
        .aba-avatar {
            width: 2.5rem; 
			height: 2.5rem; 
			border-radius: 50%;
            background: #ccc; 
			cursor: pointer; 
			display: flex;
            align-items: center; 
			justify-content: center; 
			margin: 0rem 1rem 0rem 1rem; 
			overflow: hidden;
            border: 2px solid rgba(255,255,255,0.2); 
			box-shadow: var(--shadow-1);
        }
        .aba-avatar img { width: 100%; height: 100%; object-fit: cover; }
        
        .aba-ellipsis-btn {
            background: transparent; border: none; color: white;
            cursor: pointer; display: none; align-items: center; justify-content: center;
            width: 2.5rem; height: 2.5rem; border-radius: 50%;
        }

        @media (max-width: 1024px) {
            .aba-avatar { display: none; }
            .aba-ellipsis-btn { display: flex; }
        }

 	.aba-dropdown{
            position: fixed; right: 0.05rem; top: 3.7rem; background: white;  min-width: 10rem;
            box-shadow: var(--shadow-8); border-radius: 4px; display: none; 
            flex-direction: column; padding: 0rem 0; z-index: 3000;
        }

        .aba-dropdown-largerscreen{
            position: fixed; right: 0.05rem; top: 3.70rem; background: white;  min-width: 13rem;
            box-shadow: var(--shadow-8); border-radius: 4px; display: none; 
            flex-direction: column; padding: 0rem 0; z-index: 3000;
        }
	.aba-dropdown.active { display: flex; }
        .aba-dropdown-largerscreen.active { display: flex; }
        .aba-dropdown-item { 
            padding: 0.75rem 1rem; color: var(--on-surface); text-decoration: none; 
            font-size: 0.875rem; display: flex; align-items: center;
        }
        .aba-dropdown-item .material-icons { font-size: 1.25rem; margin-right: 12px; color: rgba(0,0,0,0.54); }
        .aba-dropdown-item:hover { background: rgba(0,0,0,0.05); }

        /* --- FILTERS --- */
        .aba-filter-container {
            display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; width: 100%;
        }
        .aba-select-group { flex: 1 1 calc(20% - 0.75rem); min-width: 150px; position: relative; }
        @media (max-width: 768px) { .aba-select-group { flex: 1 1 calc(50% - 0.75rem); } }

        .aba-custom-select {
            background: var(--primary); border-radius: 8px; height: 3.5rem;
            display: flex; align-items: center; padding: 0 0.75rem;
            cursor: pointer; position: relative; transition: background 0.2s ease;
        }
        .aba-custom-select.disabled { opacity: 0.5; cursor: not-allowed; }
        .aba-icon { margin-right: 0.6rem; font-size: 1.4rem; color: #bdbdbd; margin-top: 0.5rem; }
        .aba-label { position: absolute; left: 2.75rem; top: 0.5rem; font-size: 0.65rem; color: #bdbdbd; font-weight: 400; pointer-events: none; }
        .selected-value { color: #ffffff; font-size: 1rem; padding-top: 1rem; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex-grow: 1; }
        .aba-custom-select::after { content: '\e5c5'; font-family: 'Material Icons'; color: #ffffff; font-size: 1.25rem; transition: transform 0.2s; }
        .aba-select-group.open .aba-custom-select::after { transform: rotate(180deg); }
        .aba-dropdown-menu { position: absolute; top: 100%; left: 0; width: 100%; background: var(--primary); box-shadow: var(--shadow-8); border-radius: 4px; margin-top: 4px; z-index: 3000; max-height: 250px; overflow-y: auto; display: none; padding: 8px 0; }
        .aba-select-group.open .aba-dropdown-menu { display: block; }
        .aba-dropdown-option { padding: 12px 16px; font-size: 1rem; color: #ffffff; cursor: pointer; transition: background 0.2s; }
        .aba-dropdown-option:hover { background: rgba(255, 255, 255, 0.1); }

        /* --- PROPERTY CARDS STYLING --- */
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .aba-card {
            background: var(--surface);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-1);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
            position: relative;
        }

        .aba-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-4);
        }

        .aba-card-media {
            height: 200px;
            background-color: #e0e0e0;
            background-size: cover;
            background-position: center;
            /* Flex properties for placeholder text centering */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: rgba(0,0,0,0.5);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .prop-purpose {
            position: absolute;
            top: 10px;
            right: 10px;
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: var(--shadow-1);
            z-index: 10;
        }

        .aba-card-content {
            padding: 1rem 0 0 1rem; 
            display: flex;
            flex-direction: column;
        }

        .prop-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--on-surface);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding-right: 1rem;
        }

        .prop-loc {
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            color: rgba(0,0,0,0.6);
            margin-bottom: 12px;
        }

        .prop-loc .material-icons {
            font-size: 1.125rem;
            margin-right: 4px;
        }

        .prop-row-3 {
            display: flex;
            justify-content: space-between;
            align-items: flex-end; 
            margin-top: auto;
        }

        .amenity-chips {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
            padding-bottom: 1rem; 
        }

        .chip {
            background: #f0f0f0;
            color: #666;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        .prop-price {
		position: absolute;
    		bottom: 0;
    		right: 0;
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            background-color: var(--primary);
            padding: 6px 16px;
            border-radius: 12px 0 0 0;
            white-space: nowrap;
        }

        /* --- MISC --- */
        .menu-btn {
            background: transparent; border: none; cursor: pointer;
            width: 3rem; height: 3rem; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-right: -0.9rem;
        }
        .hamburger-icon { width: 1.25rem; height: 0.75rem; display: flex; flex-direction: column; justify-content: space-between; }
        .hamburger-icon span { width: 100%; height: 2px; background-color: white; }
        .aba-footer { background: white; padding: 1.5rem 1rem; text-align: center; border-top: 1px solid #ddd; margin-top: auto; font-size: 0.875rem; color: rgba(0,0,0,0.6); }
        .aba-container { padding: 1rem; width: 100%; }
        .m-ripple { position: relative; overflow: hidden; }
        .ripple { position: absolute; background: rgba(255, 255, 255, 0.3); border-radius: 50%; transform: scale(0); animation: ripple-animation 0.6s linear; pointer-events: none; }
        @keyframes ripple-animation { to { transform: scale(4); opacity: 0; } }