.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-left: 10px;
}

.icon-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #005ebd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.icon-button:hover {
    background-color: #cf24b3;
    transform: scale(1.1);
}