/* --- Product Manager & Storage Quota (V6 Extension) --- */
.eco-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.eco-product-header h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 800;
}

.eco-product-header p {
    margin: 0;
    color: var(--eco-text-sec);
    font-size: 14px;
}

.eco-btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.15s, background-color 0.15s;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eco-btn-primary {
    background: var(--eco-pri);
    color: #fff;
    box-shadow: 0 2px 5px var(--eco-pri-soft);
}

.eco-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px var(--eco-pri-soft);
}

.eco-table-wrapper {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    -webkit-overflow-scrolling: touch;
}

.eco-table {
    width: 100%;
    min-width: 600px;
    /* Force minimum width to trigger scroll on mobile */
    border-collapse: collapse;
}

.eco-table th {
    text-align: left;
    padding: 15px 20px;
    background: #fafafa;
    color: var(--eco-text-sec);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eco-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.eco-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.eco-product-info img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    background: #eee;
}

.eco-product-info div strong {
    display: block;
    font-size: 15px;
}

.eco-product-info div small {
    color: var(--eco-text-sec);
    font-size: 11px;
}

.eco-btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f5f5f7;
    border: none;
    cursor: pointer;
    color: #555;
    transition: background-color 0.15s, color 0.15s;
}

.eco-btn-icon:hover {
    background: #eee;
    color: var(--eco-pri);
}

/* Storage Bar */
.eco-quota-section {
    margin-bottom: 25px;
}

.eco-storage-widget {
    background: var(--eco-pri-soft);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--eco-pri-soft);
}

.eco-storage-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--eco-text);
}

.eco-storage-progress {
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.eco-storage-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease-out;
}

.eco-storage-footer {
    font-size: 11px;
    clear: both;
    color: var(--eco-text-sec);
}

