.bins-container {
    position: fixed;
    bottom: 20px;
    right: 120px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid white;
    border-radius: 15px;
    color: white;
    padding: 12px 16px;
    min-width: 200px;
    height: 120px;
    z-index: 10;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.bins-header {
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.bins-title {
    font-size: 9px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.bin-date {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.bin-date.collection-today {
    color: #4CAF50;
}

.bin-icons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex: 1;
    gap: 20px;
}

.bin {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bin.active {
    display: flex;
}

.bin-icon {
    font-size: 32px;
    line-height: 1;
}

.bin-label {
    font-size: 10px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .bins-container {
        bottom: 10px;
        right: 100px;
        min-width: 180px;
        height: 100px;
        padding: 8px 12px;
    }

    .bin-icon {
        font-size: 22px;
    }

    .bin-label {
        font-size: 8px;
    }
}
