/* Button Styles */
.jupswap-button {
    background-color: #00D4FF;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.jupswap-button:hover {
    background-color: #0099CC;
}

/* Toast Messages */
#jupswap-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    display: none;
}

#jupswap-toast.show {
    display: block;
}
