body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.tosted-button {
    background-color: #0363c8;
    color: white;
    padding: 10px 20px;
    border: 2px solid #0363c8;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tosted-button:hover {
    background-color: white;
    color: #0363c8;
    box-shadow: 0 0 10px rgba(0,0,255,0.5);
}