/* ============================================================================
   Storage Location Popup Styles
   ============================================================================ */

.storloc-popup {
    width: 700px;
    min-width: 500px;
    min-height: 400px;
    max-width: none !important;
    max-height: none !important;
    resize: both;
    overflow: auto;
}

.storloc-content {
    display: flex;
    flex-direction: column;
}

.storloc-separator {
    border: none;
    border-top: 1px solid #3a3a5e;
    margin: 8px 0 12px 0;
}

.storloc-charts-container {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.storloc-chart {
    flex: 1;
    min-width: 0;
    height: 270px;
}

.storloc-chart h4 {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #aac;
    text-align: center;
}

.storloc-chart canvas {
    width: 100% !important;
    height: 210px !important;
}

.storloc-table-container {
    margin-top: 10px;
}

/* Stock table styling for storloc popup */
.storloc-table-container .stock-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.storloc-table-container .stock-table th,
.storloc-table-container .stock-table td {
    padding: 6px 10px;
    text-align: left;
    border: 1px solid #3a3a5e;
}

.storloc-table-container .stock-table th {
    background-color: #2a2a4e;
    color: #ffffff;
    font-weight: bold;
}

.storloc-table-container .stock-table td.number {
    text-align: right;
    font-family: monospace;
}

.storloc-table-container .stock-table td.empty {
    text-align: center;
    font-style: italic;
    color: #888;
}

.storloc-table-container .stock-table tr:nth-child(even) {
    background-color: #1e1e3a;
}

.storloc-table-container .stock-table tr:nth-child(odd) {
    background-color: #252550;
}

.storloc-table-container .stock-total {
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
    text-align: right;
    color: #4fc3f7;
}
