.round-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.round-icon-btn:hover {
    background: linear-gradient(to right, #7f00ff, #00c6ff);
}

.round-icon-btn i {
    font-size: 16px;
    color: #fff;
}


