.banner-container {
    position: relative;
}



#threeBanner:hover .banner-edit-button {
    display: flex;
    align-items: center;
}
#bottomBanner:hover .bottombanneredit {
    display: flex;
    align-items: center;
}




#bannerFormSheet {
    position: fixed;
    left: -100%;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    /* box-shadow: 2px 0 8px rgba(0,0,0,0.1); */
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 0px;
}
#bottomBannerFormSheet {
    position: fixed;
    left: -100%;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    /* box-shadow: 2px 0 8px rgba(0,0,0,0.1); */
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 0px;
}

#bannerFormSheet.active {
    left: 0 !important;
}

#bottomBannerFormSheet.active {
    left: 0;
}
.bottombanneredit {
    left: 4px;
    top: 4px;
    background: #262624;
}
.sheet-content {
    padding: 20px;
}

.banner-list-container {
    margin-top: 30px;
}

.banner-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 4px;
}

.banner-preview {
    width: 80px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}

.banner-info {
    flex: 1;
}

.banner-actions {
    display: flex;
    gap: 5px;
}

.status-badge {
    font-size: 13px;
    padding: 2px 8px;
    border-radius: 3px;
}

.status-badge.active {
    background: #e8f7e8;
    color: #3BB77E;
}

.status-badge.inactive {
    background: #ffe8e8;
    color: #ff6b6b;
}

.banner-list-header {
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.banner-list-header h4 {
    color: #253D4E;
    margin: 0;
}

.banner-list-header small {
    color: #666;
    font-style: italic;
    display: block;
    margin-top: 5px;
}

.banner-list-item {
    display: flex;
    align-items: center;
    padding: 7px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.banner-list-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.banner-list-image {
    width: 100px;
    height: 70px;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.banner-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-list-info {
    flex: 1;
}

.banner-list-info h6 {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #253D4E;
}

.banner-details {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.order-badge {
    font-size: 13px;
    color: #666;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 3px;
}

.banner-list-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon.edit {
    width: 35px;
    height: 35px;
    background: #3BB77E;
    color: white;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon.edit:hover {
    background: #2a9165;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.banner-url {
    font-size: 13px;
    color: #3BB77E;
    text-decoration: none;
    display: block;
}

.banner-url:hover {
    text-decoration: underline;
}
