/* LLD Build Planner - Blindspot Theme Overrides (Consolidated) */
#lld-planner {
    /* Card look */
    border-radius: 6px;
    box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1);
    border-color: #444;
    margin: 12px 0;

    /* Layout fixes */
    max-width: 100%;       /* prevents content from exceeding container */
    overflow-x: auto;      /* horizontal scroll if needed */
    box-sizing: border-box; /* padding/border included in width */
    padding: 10px;          /* optional: adds breathing room inside */
}

/* Header: use blindspot accent color */
.lld-header h2 {
    color: #047CC1;
}

/* Buttons */
.lld-btn {
    font-family: "Open Sans", "Segoe UI", sans-serif;
    border-radius: 3px;
    margin: 2px 0;          /* fixes vertical squeeze */
}

/* Panel headings */
.lld-panel h3 {
    color: #047CC1;
}

/* Equipment slot labels */
.lld-slot-label {
    font-family: "Open Sans", sans-serif;
}

/* Build info bar */
.lld-build-info {
    border-radius: 6px;
    box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.05);
}

/* Modal content */
.lld-modal-content {
    border-radius: 6px;
}

/* Builds list hover effect */
.lld-builds-list-item:hover {
    background: #1a1a3e;
}

/* Scrollbars for WebKit browsers */
#lld-planner ::-webkit-scrollbar {
    width: 6px;
}
#lld-planner ::-webkit-scrollbar-track {
    background: #0f0f1a;
}
#lld-planner ::-webkit-scrollbar-thumb {
    background: #3d3522;
    border-radius: 3px;
}
#lld-planner ::-webkit-scrollbar-thumb:hover {
    background: #5a5a3e;
}
