.action-button {
    width: 100%;
    padding: 18px 20px;
    background-color: #CFCFCF;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #101010;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action-button:hover {
    background-color: #1C1C1C;
    color: #949494;
}

.action-button .right-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: auto;
}

.action-button .right-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}