<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
:root {
    --primary-color: #1a4789;    /* Dark blue from logo */
    --secondary-color: #3498db;  /* Lighter blue for accents */
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #1a4789;      /* Match primary color */
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --info-color: #3498db;
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 70px;
    --header-height: 60px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* Logo Styles */
.logo-container {
    padding: 20px;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    margin: 10px;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

/* Layout */
.wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
    transition: all 0.3s ease;
}

.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(to bottom, var(--primary-color), #2c5aa0);
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar-collapsed .sidebar {
    width: var(--sidebar-collapsed-width);
}

.sidebar-collapsed .sidebar-header h2,
.sidebar-collapsed .sidebar-menu a span {
    display: none;
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: all 0.3s ease;
}

.sidebar-collapsed .main-content {
    margin-left: var(--sidebar-collapsed-width);
}

/* Sidebar */
.sidebar-header {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-menu a:hover, 
.sidebar-menu a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-left: 4px solid var(--secondary-color);
}

.sidebar-menu a i {
    margin-right: 10px;
    font-size: 18px;
    width: 25px;
    text-align: center;
}

/* Top Bar */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    height: var(--header-height);
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 3px solid var(--primary-color);
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-bar form {
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 71, 137, 0.1);
}

.search-bar button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background-color: #2c5aa0;
}

.user-menu {
    display: flex;
    align-items: center;
}

.user-menu span {
    margin-right: 15px;
}

.logout-btn {
    color: var(--danger-color);
}

/* Content Area */
.content {
    padding: 20px;
}

/* Dashboard */
.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-header {
    margin-bottom: 20px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 10px 0;
}

.stat-list {
    margin-top: 15px;
}

.stat-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.stat-label {
    font-weight: 500;
}

.stat-value {
    font-weight: bold;
    color: var(--secondary-color);
}

.recent-leads, .quick-actions {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.data-table th, 
.data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.data-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Status and Heat Badges */
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-new-lead {
    background-color: #e3f2fd;
    color: var(--primary-color);
}

.status-contact-attempted {
    background-color: #fff3e0;
    color: #e65100;
}

.status-contacted {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-qualified-lead {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.status-viewing-scheduled {
    background-color: #e8eaf6;
    color: #303f9f;
}

.status-viewing-completed {
    background-color: #e0f2f1;
    color: #00695c;
}

.status-follow-up-sent {
    background-color: #f1f8e9;
    color: #558b2f;
}

.status-negotiation-stage {
    background-color: #fce4ec;
    color: #c2185b;
}

.status-offer-made {
    background-color: #ede7f6;
    color: #4527a0;
}

.status-offer-accepted {
    background-color: #e0f7fa;
    color: #00838f;
}

.status-sale-completed {
    background-color: #e8f5e9;
    color: #1b5e20;
}

.status-lead-lost {
    background-color: #fafafa;
    color: #424242;
}

.heat-hot {
    background-color: #ffebee;
    color: #1a4789;
}

.heat-medium {
    background-color: #fff8e1;
    color: #1a4789;
}

.heat-cold {
    background-color: #e3f2fd;
    color: #1a4789;
}

.heat-mild {
    background-color: #fff3e0;
    color: #1a4789;
}

.heat-warm {
    background-color: #fbe9e7;
    color: #1a4789;
}

.heat-very-warm {
    background-color: #ffebee;
    color: #1a4789;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-secondary {
    background-color: #2c5aa0;
}

.btn-success {
    background-color: var(--success-color);
}

.btn-danger {
    background-color: var(--danger-color);
}

.btn-warning {
    background-color: var(--warning-color);
}

.btn-info {
    background-color: var(--info-color);
}

.mt-3 {
    margin-top: 15px;
}

/* Forms */
.form-container {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
}

textarea.form-control {
    min-height: 100px;
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Footer */
.main-footer {
    background-color: white;
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 0;
        opacity: 0;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .wrapper.sidebar-collapsed .sidebar {
        width: var(--sidebar-width);
        opacity: 1;
    }
    
    .wrapper.sidebar-collapsed .main-content {
        margin-left: 0;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .top-bar {
        padding: 0 10px;
    }
    
    .search-bar {
        max-width: 200px;
        margin: 0 10px;
    }
    
    .user-menu span {
        display: none;
    }
}

/* Leads Page */
.leads-container {
    padding: 20px;
}

.leads-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-results-info {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-results-info p {
    margin: 0;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
}

.actions {
    white-space: nowrap;
    text-align: right;
}

.actions .btn {
    margin-left: 5px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.pagination .btn {
    min-width: 40px;
    text-align: center;
}

.pagination .btn-primary {
    pointer-events: none;
}

/* Login Page Styles */
.login-page {
    background: linear-gradient(135deg, #1a4789 0%, #0d2b4e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-box .logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.login-box .logo-container img {
    max-width: 200px;
    height: auto;
}

.login-box h2 {
    text-align: center;
    color: #1a4789;
    margin-bottom: 30px;
    font-size: 24px;
}

.login-box .form-group {
    margin-bottom: 20px;
}

.login-box label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.login-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.login-box input:focus {
    border-color: #1a4789;
    outline: none;
    box-shadow: 0 0 0 2px rgba(26, 71, 137, 0.1);
}

.login-box .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
}

.login-box .alert {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
}

.login-box .alert-danger {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
} </pre></body></html>