#current-assets-panel {
    position: fixed;
    right: -300px;
    top: 50px;
    width: 300px;
    height: calc(100vh - 50px);
    background-color: #252536;
    border-left: 1px solid #3a3a4a;
    transition: right 0.3s ease;
    z-index: 99;
}
#current-assets-panel.open {
    right: 0;
}
.panel-header {
    padding: 15px;
    background-color: #2d2d3f;
    border-bottom: 1px solid #3a3a4a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.panel-header h3 {
    color: #646cff;
    font-size: 16px;
}
#toggle-assets-panel {
    background: none;
    border: none;
    color: #e2e2e2;
    cursor: pointer;
    padding: 5px;
}
.assets-list {
    padding: 15px;
    overflow-y: auto;
    height: calc(100% - 60px);
}
.loaded-asset-item {
    background: #2d2d3f;
    border: 1px solid #3a3a4a;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.loaded-asset-info h4 {
    color: #e2e2e2;
    font-size: 14px;
    margin-bottom: 5px;
}
.view-asset-btn:hover {
    background: #646cff !important;
    color: white !important;
}
.loaded-asset-info p {
    color: #a0a0b0;
    font-size: 12px;
}
.loaded-asset-item .asset-actions {
    display: flex;
    gap: 5px;
}
.remove-asset {
    background: #ff6464;
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}