.popup-container {
    position: fixed;
    bottom: -220px;
    right: 20px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: bottom 0.3s ease-in-out;
    z-index: 9999;
}

.popup-header {
    background: #007bff;
    color: white;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    background: #e0e0e0;
}

.tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    background: #007bff;
    color: white;
}

.tab.active {
    background: #0056b3;
}

.tab-content {
    display: none;
    padding: 10px;
}

.tab-content.active {
    display: block;
}
