﻿/* Whole Tabs Container */
.seller-tabs {
    background: transparent; /* sand / camel tone */
    border-radius: 2px;
    padding: 2px;
    margin-top: 0px;
    margin-right: 10px;
    margin-left: 10px;
/*    margin-bottom: 60px;*/
/*    box-shadow: 0 2px 6px rgba(0,0,0,0.1);*/
}

/* Header row (tab buttons container) */
.seller-tab-header {
    display: flex;
    justify-content: center;
    color: #7b705b;
    gap: 10px;
}

/* Active Tab style */
.seller-tab-active {
    background-color: transparent;
    font-weight: 1000;
    color: #df8f20 !important;
}

/* Inactive tabs */
.mud-tab {
    border-radius: 20px;
    color: green;
    padding: 4px 6px;
    transition: all 1s ease;
}

    .mud-tab:hover {
        background-color: transparent; /* #994e00 at 50% */
    }

/* Panel wrapper */
.seller-tab-panel-wrapper {
    padding: 12px;
    color: #f0d8a8;
    border-radius: 8px;
}

/* Content inside each tab */
.seller-tab-panel {
    padding: 2px;
    margin-top: 0;
    margin-bottom: 60px;
    /*max-height: 200px;*/ /* adjust as needed */
}


/* Bottom Bar */
.seller-bottom-bar {
    position: fixed;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 5;

       /* Camel tone background with 50% opacity */
    background-color: rgba(123, 112, 91, 0.8); 
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    align-items: center;
    color: transparent;
}

/* Star Button specific tweaks */
.seller-star-btn {
    display: flex;
    align-items: center;
    color: white;
}

/* Share overlay (dark background click-to-close) */
.seller-share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 30;
}

/* Share menu popup */
.seller-share-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    min-width: 300px;
    font-size: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    padding: 16px;
    z-index: 40;
    text-align: right;
}

/* Share menu items */
.seller-share-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

    .seller-share-item:hover {
        background: #f5f5f5;
        border-radius: 6px;
    }
