.lmpro-wrapper {
    margin: 0 auto 40px auto;
    max-width: 1200px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lmpro-layout {
    display: flex;
    gap: 20px;
}

/* Sidebar */
.lmpro-sidebar {
    flex: 0 0 280px;
    background: #111827;
    color: #f9fafb;
    border-radius: 10px;
    padding: 15px;
    position: relative;
}

.lmpro-filters-toggle {
    display: none;
    background: #111827;
    color: #f9fafb;
    border: 1px solid #374151;
    border-radius: 6px;
    padding: 6px 10px;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}

.lmpro-filters-inner h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.lmpro-field {
    display: block;
    margin-bottom: 10px;
}

.lmpro-field span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 3px;
}

.lmpro-field input[type="text"],
.lmpro-field select {
    width: 100%;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #374151;
    background: #111827;
    color: #f9fafb;
    font-size: 0.9rem;
}

.lmpro-field input::placeholder {
    color: #6b7280;
}

.lmpro-buttons {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.lmpro-buttons .button {
    flex: 1 1 auto;
    text-align: center;
}

/* Main area */
.lmpro-main {
    flex: 1 1 auto;
    min-width: 0;
}

/* Map */
#lmpro-map {
    width: 100%;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

/* Results */
#lmpro-results {
    min-height: 60px;
}

#lmpro-results.lmpro-loading {
    opacity: 0.6;
}

/* Cards */
.lmpro-item {
    background: #111827;
    color: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #1f2937;
}

.lmpro-item-main {
    flex: 1 1 auto;
    min-width: 0;
}

.lmpro-title {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
}

.lmpro-when {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.lmpro-day {
    font-weight: 600;
}

.lmpro-time {
    margin-left: 4px;
}

.lmpro-address {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    color: #d1d5db;
}

.lmpro-distance {
    margin: 0 0 6px 0;
    font-size: 0.85rem;
    color: #a5b4fc;
}

.lmpro-desc {
    margin-top: 4px;
    font-size: 0.9rem;
    color: #e5e7eb;
}

/* Buttons on each card */
.lmpro-item-actions {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    justify-content: center;
}

.lmpro-btn {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    text-decoration: none;
    color: #f9fafb;
    border: 1px solid transparent;
    white-space: nowrap;
}

.lmpro-btn-call {
    background: #10b981;
}

.lmpro-btn-directions {
    background: #3b82f6;
}

.lmpro-btn-website {
    background: #6b7280;
}

.lmpro-btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .lmpro-layout {
        flex-direction: column;
    }

    .lmpro-sidebar {
        width: 100%;
        max-width: none;
    }

    .lmpro-filters-toggle {
        display: block;
    }

    .lmpro-filters-inner {
        display: none;
    }

    .lmpro-filters-inner.lmpro-filters-open {
        display: block;
    }

    .lmpro-item {
        flex-direction: column;
    }

    .lmpro-item-actions {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
    }
}


.lmpro-badge-league {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f59e0b;
    color: #111827;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lmpro-league-info {
    margin: 0 0 4px 0;
    font-size: 0.85rem;
    color: #fbbf24;
}


/* League scores button */
.lmpro-btn-league {
    background-color: #0f766e;
}

.lmpro-btn-league:hover {
    background-color: #115e59;
}
