body {
    background: #f7f7f9;
    color: #222;
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background: #191919;
    color: #fff;
    padding: 1.5rem 0 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.site-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

.main-nav {
    margin-top: 0.5rem;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 1.5rem;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:last-child {
    margin-right: 0;
}

.main-nav a:hover {
    color: #00ff00;
}

.site-main {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.site-footer {
    background: #222;
    color: #eee;
    padding: 1.5rem 0 1rem 0;
    text-align: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.powered-by {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo {
    height: 32px;
    vertical-align: middle;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 700px) {
    .container {
        width: 90vw;
        max-width: 100vw;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
    .main-nav {
        margin-top: 1rem;
    }
    .site-title {
        font-size: 1.1rem;
    }
    .main-form input,
    .main-form select,
    .main-form textarea {
        width: 90% !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    .form-row input,
    .form-row select {
        width: 100%;
    }
    .centered-card {
        width: 100%;
        max-width: 480px;
        margin: 1rem auto;
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
        box-sizing: border-box;
        border: none !important;
    }
    .container, .form-section { border: none !important; }
    .centered-card .form-btn {
        width: auto;
        min-width: 140px;
        max-width: 100%;
        margin: 1.2rem auto 0 auto;
    }
    .logo-title {
        padding-left: 1.2rem;
    }
}

/* Accent color update: #00ff00, black button text */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 16px;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: #00ff00;
    box-shadow: 0 0 0 2px rgba(0,255,0,0.10);
    outline: none;
    background: #f0fff0;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.search-input, .search-select {
    flex: 1 1 180px;
    min-width: 160px;
    margin-bottom: 0;
    padding-right: 2.5rem !important;
    background: #fff url('data:image/svg+xml;utf8,<svg fill="black" height="32" viewBox="0 0 20 20" width="32" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>') no-repeat right 1rem center/2rem 2rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 16px;
    font-size: 1.08rem;
    height: 56px;
    color: #222;
}

.search-btn, .form-btn {
    padding: 1rem 2.2rem;
    border-radius: 16px;
    border: none;
    background: #00ff00;
    color: #111;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,255,0,0.08);
}
.search-btn:hover, .form-btn:hover {
    background: #00cc00;
    color: #111;
    box-shadow: 0 4px 16px rgba(0,255,0,0.13);
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2.2rem 2rem 1.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.form-row input,
.form-row select {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0.8rem;
    padding: 1rem 1.1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 16px;
    font-size: 1.08rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-row input:focus,
.form-row select:focus {
    border-color: #00ff00;
    box-shadow: 0 0 0 2px rgba(0,255,0,0.10);
    outline: none;
    background: #f0fff0;
}

.form-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 16px;
    border: none;
    background: #00ff00;
    color: #111;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s, box-shadow 0.2s;
}
.form-btn:hover {
    background: #00cc00;
    color: #111;
    box-shadow: 0 2px 8px rgba(0,255,0,0.08);
}

.form-section h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-errors {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.form-footer {
    text-align: center;
    margin-top: 1.2rem;
    color: #555;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
}
.site-main.container {
    flex: 1 0 auto;
}

.dashboard-section,
.admin-table-wrapper {
    width: 90vw;
    max-width: none;
    margin: 2rem auto 0 auto;
    padding: 0;
}

.dashboard-listings {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.dashboard-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.dashboard-actions {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-top: 0;
}
.dashboard-btn {
    background: #00ff00;
    color: #111;
    border: none;
    border-radius: 12px;
    padding: 0.6rem 1.3rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    flex-shrink: 0;
}
.dashboard-btn:hover {
    background: #00cc00;
}
.dashboard-btn-danger {
    background: #ff3b3b;
    color: #fff;
}
.dashboard-btn-danger:hover {
    background: #d60000;
}

.admin-tabs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.admin-tab {
    padding: 0.7rem 1.5rem;
    border-radius: 12px 12px 0 0;
    background: #f0f0f0;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.admin-tab.active, .admin-tab:hover {
    background: #00ff00;
    color: #111;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.admin-table th, .admin-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.admin-table th {
    background: #f7f7f7;
    font-weight: 700;
}
.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table td {
    white-space: nowrap;
}

.dashboard-btn {
    flex-shrink: 1;
    min-width: 80px;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

.admin-table td .dashboard-actions {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    white-space: nowrap;
}

input[type="file"] {
    display: none;
}
.file-upload-label {
    display: inline-block;
    background: #00ff00;
    color: #111;
    border-radius: 16px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background 0.2s, color 0.2s;
}
.file-upload-label:hover {
    background: #00cc00;
    color: #000;
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #191919;
        padding: 5rem 2rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid #333;
        transition: color 0.2s;
        margin-right: 0;
    }
    
    .main-nav a:last-child {
        border-bottom: none;
    }
    
    .main-nav a:hover {
        color: #00ff00;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Adjust header for mobile */
    .header-flex {
        position: relative;
    }
    
    .logo-title img {
        height: 48px !important;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

.centered-card {
    max-width: 480px;
    margin: 2rem auto;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

.centered-card .form-btn {
    display: block;
    width: auto;
    min-width: 180px;
    max-width: 100%;
    margin: 1.5rem auto 0 auto;
    text-align: center;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-actions .form-btn {
    margin: 0;
}

.cta-actions .login-link {
    margin-top: 1rem;
    display: block;
    text-align: center;
}

.business-images {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    align-items: center;
}
.biz-thumb {
    height: 64px;
    width: 64px;
    object-fit: cover;
    border-radius: 10px;
    background: #f7f7f7;
    border: 1.5px solid #e0e0e0;
    box-shadow: 0 1.5px 6px rgba(0,0,0,0.06);
}
.biz-logo-wide {
    height: 64px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    background: transparent;
    border: none;
    margin-right: 1.2rem;
    display: block;
}

.business-header-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.biz-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    margin-right: 1.2em;
    font-size: 1rem;
}
.biz-icon {
    font-size: 1.15em;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    color: #111;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0,0,0,0.25);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2100;
    user-select: none;
    transition: background 0.2s, color 0.2s;
}
.lightbox-arrow-left {
    left: 24px;
}
.lightbox-arrow-right {
    right: 24px;
}
.lightbox-arrow:hover {
    background: #00ff00;
    color: #111;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.2s;
    pointer-events: auto;
}
.lightbox-modal[style*='display: flex'] {
    display: flex !important;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #fff;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 36px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 2100;
    font-weight: bold;
    text-shadow: 0 2px 8px #000;
    transition: color 0.2s;
}
.lightbox-close:hover {
    color: #00ff00;
}

.biz-social-link {
    display: inline-flex;
    align-items: center;
    margin-right: 0.7em;
    font-size: 1.6em;
    text-decoration: none;
    transition: filter 0.2s;
}
.biz-social-link i {
    display: block;
    transition: color 0.2s;
    font-size: 1.2em;
}

/* Fallback for when Font Awesome doesn't load */
.biz-social-link:before {
    content: "🔗";
    font-size: 1.2em;
    display: none;
}

.biz-social-link i:not([class*="fa-"]):before {
    content: "🔗";
    display: inline;
}

.biz-social-link.facebook i { color: #1877f3; }
.biz-social-link.twitter i { color: #1da1f2; }
.biz-social-link.instagram i { color: #e4405f; }
.biz-social-link.youtube i { color: #ff0000; }
.biz-social-link.tiktok i { color: #000; }
.biz-social-link.threads i { color: #000; }
.biz-social-link.other-social i { color: #111; }
.biz-social-link:hover, .biz-social-link:focus {
    filter: brightness(1.2);
}

.business-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    align-items: center;
}

/* Two-column business list for desktop */
.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 900px) {
    .two-col-list {
        grid-template-columns: 1fr;
    }
} 